:root {
  --ink: #15152a;
  --ink-soft: #51546b;
  --muted: #686b7d;
  --line: #e7e8f1;
  --surface: #ffffff;
  --surface-soft: #f6f7fb;
  --surface-purple: #f2f0ff;
  --primary: #5b4cf0;
  --primary-dark: #4638d3;
  --secondary: #8e5cf6;
  --cyan: #2fb7d3;
  --green: #20a779;
  --orange: #f59f51;
  --danger: #e35757;
  --shadow-sm: 0 10px 35px rgba(31, 29, 78, 0.07);
  --shadow-md: 0 24px 70px rgba(37, 32, 95, 0.12);
  --shadow-primary: 0 13px 28px rgba(91, 76, 240, 0.26);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 90;
  background: rgba(19, 18, 43, 0.28);
  backdrop-filter: blur(3px);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -0.035em;
}

p:last-child {
  margin-bottom: 0;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(226, 227, 237, 0.86);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(30, 28, 70, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8f58f7);
  box-shadow: 0 8px 20px rgba(91, 76, 240, 0.24);
}

.brand-mark svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: #3e4054;
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 11px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.whatsapp-button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(91, 76, 240, 0.48);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(91, 76, 240, 0.12);
}

.button-sm {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.button-lg {
  min-height: 55px;
  padding: 15px 24px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--primary), #7359f4, #8d5cf5);
  background-position: 0 50%;
  background-size: 180% 100%;
  box-shadow: var(--shadow-primary);
}

.button-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 17px 34px rgba(91, 76, 240, 0.31);
}

.button-secondary {
  border-color: #dcddea;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 29, 78, 0.05);
}

.button-secondary:hover {
  border-color: #bdb9ef;
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(31, 29, 78, 0.09);
}

.button-white {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 14px 36px rgba(14, 9, 78, 0.2);
}

.button-block {
  width: 100%;
}

.eyebrow,
.section-kicker,
.light-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid #dedafa;
  border-radius: 999px;
  color: #5549d7;
  background: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.045em;
  text-transform: none;
  backdrop-filter: blur(8px);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #29bc86;
  box-shadow: 0 0 0 4px rgba(41, 188, 134, 0.14);
}

.hero {
  position: relative;
  padding: 146px 0 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.93)),
    radial-gradient(circle at 16% 24%, #ddd8ff 0, transparent 28%),
    radial-gradient(circle at 84% 16%, #d9f3ff 0, transparent 26%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(#c7c7e5 1px, transparent 1px), linear-gradient(90deg, #c7c7e5 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 112px;
  left: -86px;
  width: 210px;
  height: 210px;
  border: 38px solid rgba(109, 83, 245, 0.07);
}

.hero-orb-two {
  top: 100px;
  right: -56px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, rgba(41, 184, 212, 0.12), rgba(110, 84, 245, 0.06));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 68px;
}

.hero-copy {
  padding-bottom: 46px;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 4.65rem);
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(115deg, var(--primary), #a34ff0);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.23rem);
  line-height: 1.67;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: #168965;
  stroke-width: 2;
  background: #e2f7ef;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 23px 4px 48px;
}

.dashboard-glow {
  position: absolute;
  inset: 15% 8%;
  border-radius: 50%;
  background: rgba(97, 75, 240, 0.24);
  filter: blur(70px);
}

.dashboard {
  position: relative;
  z-index: 2;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 36px 90px rgba(46, 38, 119, 0.2), inset 0 0 0 1px rgba(224, 222, 244, 0.7);
  backdrop-filter: blur(17px);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.dashboard-topbar,
.dashboard-title,
.metric-head,
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topbar {
  padding: 0 2px 17px;
}

.dashboard-title {
  justify-content: flex-start;
  gap: 11px;
}

.dashboard-logo,
.metric-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8e5cf6);
}

.dashboard-logo svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-title div {
  display: flex;
  flex-direction: column;
}

.dashboard-title strong {
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.dashboard-title span {
  color: var(--muted);
  font-size: 0.69rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid #d8eee6;
  border-radius: 999px;
  color: #167355;
  background: #effaf6;
  font-size: 0.66rem;
  font-weight: 700;
}

.live-badge i,
.metric-card small i,
.seo-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22ad7c;
  box-shadow: 0 0 0 3px rgba(34, 173, 124, 0.12);
}

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

.metric-card {
  min-width: 0;
  padding: 15px;
  border: 1px solid #ebeaf3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 20px rgba(30, 27, 80, 0.035);
}

.metric-head {
  gap: 8px;
  margin-bottom: 6px;
  color: #676a7d;
  font-size: 0.68rem;
  font-weight: 650;
}

.metric-icon {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  color: var(--primary);
  background: #eceaff;
}

.metric-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-icon-purple {
  color: #9751d2;
  background: #f4eaff;
}

.metric-icon-cyan {
  color: #158ca6;
  background: #e5f8fb;
}

.metric-icon-green {
  color: #15906a;
  background: #e3f7f0;
}

.metric-card > strong {
  display: inline-block;
  margin-right: 4px;
  font-size: 1.63rem;
  letter-spacing: -0.06em;
}

.metric-card small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #898b9a;
  font-size: 0.64rem;
}

.seo-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 9px 0 1px;
}

.seo-status strong {
  color: #15845f;
  font-size: 1.05rem;
}

.chart-card {
  margin-top: 11px;
  padding: 16px 16px 8px;
  border: 1px solid #ebeaf3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.chart-head > div {
  display: flex;
  flex-direction: column;
}

.chart-head span {
  color: var(--muted);
  font-size: 0.67rem;
}

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

.chart-head .chart-positive {
  padding: 4px 8px;
  border-radius: 7px;
  color: #168562;
  background: #eaf8f3;
  font-weight: 750;
}

.chart {
  position: relative;
  height: 92px;
  margin-top: 5px;
}

.chart-line {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: #ececf4;
}

.line-one {
  top: 20%;
}

.line-two {
  top: 50%;
}

.line-three {
  top: 80%;
}

.chart svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

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

.chart-path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(229, 228, 241, 0.8);
  border-radius: 11px;
  color: #3e4053;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 13px 36px rgba(39, 33, 100, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.floating-note span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: #20ad7b;
}

.floating-note-top {
  top: 4px;
  right: -27px;
}

.floating-note-bottom {
  bottom: 23px;
  left: -28px;
  animation-delay: -1.8s;
}

.floating-note-bottom span {
  background: #f5a94e;
}

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

.client-strip {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(219, 220, 234, 0.82);
  color: #85879a;
}

.client-strip > span {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.client-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 31px;
}

.client-strip div span {
  color: #626578;
  font-size: 0.83rem;
  font-weight: 650;
}

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

.section-heading h2,
.comparison-copy h2,
.benefits-copy h2,
.diagnosis-copy h2,
.faq-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.section-heading > p,
.heading-row > p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading.centered {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.heading-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.heading-row > div h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.heading-row > p {
  margin-bottom: 4px;
}

.problems-section {
  background: var(--surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.problem-card {
  position: relative;
  min-height: 280px;
  padding: 30px 24px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.problem-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.problem-card:hover {
  z-index: 2;
  background: #fbfbff;
  box-shadow: 0 16px 45px rgba(34, 30, 90, 0.11);
  transform: translateY(-5px);
}

.problem-number {
  position: absolute;
  top: 22px;
  right: 21px;
  color: #dedee8;
  font-size: 0.74rem;
  font-weight: 800;
}

.icon-box {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 13px;
  color: var(--danger);
  background: #fff0f0;
}

.icon-box svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-orange {
  color: #c87527;
  background: #fff3e6;
}

.icon-purple {
  color: #7950da;
  background: #f0ebff;
}

.icon-blue {
  color: #377ece;
  background: #eaf4ff;
}

.icon-green {
  color: #278f6d;
  background: #e7f8f2;
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.65;
}

.services-section {
  overflow: hidden;
  background: var(--surface-soft);
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dfe0ec, transparent);
}

.services-orb {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 83, 244, 0.09), transparent 66%);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid #e4e4ef;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 36px rgba(29, 27, 74, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: #d3cff8;
  box-shadow: 0 22px 50px rgba(38, 31, 103, 0.11);
  transform: translateY(-7px);
}

.service-card:hover .service-icon {
  transform: rotate(-4deg) scale(1.06);
}

.service-featured {
  border-color: #cbc5fa;
  background:
    radial-gradient(circle at 100% 0, rgba(115, 88, 245, 0.11), transparent 37%),
    #fff;
}

.service-icon {
  display: grid;
  width: 53px;
  height: 53px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 15px;
  color: var(--primary);
  background: #ebe9ff;
  transition: transform 0.25s ease;
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-purple {
  color: #8f4bc4;
  background: #f5eaff;
}

.service-icon-cyan {
  color: #168fa7;
  background: #e6f8fb;
}

.service-icon-green {
  color: #168260;
  background: #e4f7f0;
}

.service-icon-orange {
  color: #ca722a;
  background: #fff1e3;
}

.service-icon-pink {
  color: #c75286;
  background: #ffedf5;
}

.service-tag {
  position: absolute;
  top: 29px;
  right: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #ece9ff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-card > p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-card ul,
.plan-card ul,
.comparison-card ul,
.diagnosis-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.plan-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 21px;
  color: #5f6274;
  font-size: 0.86rem;
}

.service-card li::before,
.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27a779;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--primary-dark);
  font-size: 0.89rem;
  font-weight: 750;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.local-seo-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(91, 76, 240, 0.11), transparent 27%),
    radial-gradient(circle at 88% 90%, rgba(47, 183, 211, 0.09), transparent 25%),
    #f6f7fb;
}

.local-seo-orb {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 350px;
  height: 350px;
  border: 58px solid rgba(91, 76, 240, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.local-seo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 78px;
}

.local-seo-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4vw, 3.5rem);
}

.local-seo-copy > p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.local-seo-copy .local-seo-lead {
  margin-bottom: 13px;
  color: #3f4259;
  font-size: 1.08rem;
  font-weight: 600;
}

.search-preview {
  margin: 29px 0 25px;
  padding: 14px;
  border: 1px solid #dcdeeb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(38, 31, 103, 0.11);
}

.search-preview-bar {
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid #e2e3ec;
  border-radius: 10px;
  color: #55586c;
  background: #fff;
  font-size: 0.79rem;
}

.search-preview-bar svg {
  width: 17px;
  fill: none;
  stroke: #6b6e80;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.search-result {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 13px;
  margin-top: 13px;
}

.search-map {
  position: relative;
  min-height: 120px;
  border-radius: 11px;
  background:
    linear-gradient(35deg, transparent 43%, rgba(255, 255, 255, 0.8) 44%, rgba(255, 255, 255, 0.8) 49%, transparent 50%),
    linear-gradient(145deg, transparent 33%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.9) 39%, transparent 40%),
    #e6f0e7;
  overflow: hidden;
}

.search-map::before,
.search-map::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #d4e7ef;
}

.search-map::before {
  top: -20px;
  left: -10px;
  width: 70px;
  height: 70px;
}

.search-map::after {
  right: -15px;
  bottom: -24px;
  width: 85px;
  height: 85px;
}

.map-road {
  position: absolute;
  z-index: 2;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.95);
}

.road-one {
  top: 63px;
  right: -10px;
  left: -10px;
  transform: rotate(-13deg);
}

.road-two {
  top: 40px;
  bottom: -10px;
  left: 64px;
  width: 3px;
  height: auto;
  transform: rotate(18deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 5px 10px rgba(53, 43, 145, 0.2);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.pin-one {
  top: 26px;
  left: 38%;
}

.pin-two {
  top: 72px;
  left: 67%;
  background: #36a887;
}

.pin-three {
  top: 84px;
  left: 17%;
  background: #ee9b4d;
}

.search-business {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 8px 10px 2px;
}

.result-position {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-size: 0.68rem;
  font-weight: 850;
}

.search-business > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.search-business strong {
  margin-bottom: 2px;
  font-size: 0.89rem;
}

.result-stars {
  color: #e8972f;
  font-size: 0.67rem;
  letter-spacing: 0.04em;
}

.result-stars small {
  color: #676a7c;
  letter-spacing: 0;
}

.search-business p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
}

.local-seo-points {
  display: grid;
  gap: 13px;
}

.local-seo-point {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding: 21px 23px;
  border: 1px solid #e1e2ed;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 9px 28px rgba(34, 31, 82, 0.045);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.local-seo-point:hover {
  border-color: #ccc6f5;
  box-shadow: 0 17px 38px rgba(38, 31, 100, 0.09);
  transform: translateX(5px);
}

.local-seo-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: #eceaff;
}

.local-seo-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.local-seo-icon-cyan {
  color: #168ca4;
  background: #e4f7fb;
}

.local-seo-icon-purple {
  color: #8b4cc4;
  background: #f4eaff;
}

.local-seo-icon-orange {
  color: #c7752d;
  background: #fff1e4;
}

.local-seo-icon-green {
  color: #168563;
  background: #e3f7f0;
}

.local-seo-point > div {
  position: relative;
  padding-right: 35px;
}

.point-number {
  position: absolute;
  top: 0;
  right: 0;
  color: #b8bac7;
  font-size: 0.65rem;
  font-weight: 850;
}

.local-seo-point h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
  letter-spacing: -0.025em;
}

.local-seo-point p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.system-section {
  overflow: hidden;
  background: #fff;
}

.system-section::before,
.system-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.system-section::before {
  top: 42px;
  left: -150px;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(91, 76, 240, 0.08), transparent 68%);
}

.system-section::after {
  right: -120px;
  bottom: 0;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(47, 183, 211, 0.08), transparent 68%);
}

.system-flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0, rgba(91, 76, 240, 0.08), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(47, 183, 211, 0.08), transparent 26%),
    linear-gradient(135deg, #fff, #f8f7ff);
  box-shadow: 0 22px 60px rgba(38, 31, 103, 0.09);
  overflow: hidden;
}

.system-flow::before {
  content: "";
  position: absolute;
  top: 60px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5befa 12%, #8d7ff5 50%, #b9e6ef 88%, transparent);
}

.flow-item {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 108px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.flow-item::after {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  right: 11px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #6d6982;
  background: #efeff7;
  box-shadow: 0 4px 10px rgba(35, 32, 84, 0.1);
  font-size: 0.56rem;
  font-weight: 850;
}

.flow-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  place-items: center;
  border: 1px solid #e3e0fb;
  border-radius: 15px;
  color: var(--primary);
  background: #f0eeff;
  box-shadow: 0 9px 24px rgba(53, 45, 124, 0.09);
  font-weight: 800;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.flow-item:hover .flow-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8158ef);
  box-shadow: 0 13px 28px rgba(91, 76, 240, 0.24);
  transform: translateY(-5px);
}

.flow-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-item strong {
  max-width: 132px;
  font-size: 0.86rem;
  line-height: 1.3;
}

.flow-item small {
  color: var(--muted);
  font-size: 0.69rem;
}

.flow-arrow {
  position: relative;
  z-index: 3;
  color: #a6a0cd;
  font-size: 1.2rem;
}

.comparison-section {
  padding-top: 50px;
  background: #fff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 70px;
  padding: 70px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 100%, rgba(117, 86, 245, 0.08), transparent 35%),
    var(--surface-soft);
}

.comparison-copy p {
  margin-bottom: 27px;
  color: var(--ink-soft);
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.comparison-card {
  min-height: 320px;
  padding: 27px;
  border-radius: var(--radius-md);
}

.before-card {
  border: 1px solid #e5e5ec;
  background: rgba(255, 255, 255, 0.76);
}

.after-card {
  border: 1px solid #cbc5fa;
  background: #fff;
  box-shadow: 0 20px 45px rgba(68, 51, 158, 0.12);
  transform: translateY(-14px);
}

.comparison-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  font-size: 1.03rem;
  font-weight: 800;
}

.comparison-label span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  color: #b15353;
  background: #fdecec;
}

.after-card .comparison-label {
  color: var(--primary-dark);
}

.after-card .comparison-label span {
  color: #fff;
  background: var(--primary);
}

.comparison-card li {
  position: relative;
  margin: 16px 0;
  padding-left: 25px;
  color: #67697b;
  font-size: 0.9rem;
}

.comparison-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #b0b1bd;
}

.after-card li {
  color: #484b60;
}

.after-card li::before {
  content: "✓";
  color: #21a376;
  font-weight: 800;
}

.process-section {
  background: var(--surface);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, #d8d5ef, #a9a2e8, #d8d5ef);
}

.process-item {
  position: relative;
  padding: 0 15px;
  text-align: center;
}

.process-number {
  position: absolute;
  top: -17px;
  left: 50%;
  color: #b9b8c9;
  font-size: 0.62rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid #dfdcef;
  border-radius: 22px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 10px 26px rgba(34, 31, 84, 0.08);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.process-item:hover .process-icon {
  color: #fff;
  background: var(--primary);
  transform: translateY(-5px);
}

.process-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-item h3 {
  margin-bottom: 10px;
  font-size: 1.03rem;
}

.process-item p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.sectors-section {
  background: var(--surface-soft);
}

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

.sector-card {
  display: grid;
  min-height: 145px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 25px;
  border: 1px solid #e2e3ed;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(34, 31, 82, 0.035);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.sector-card:hover {
  border-color: #cfc9f5;
  box-shadow: 0 17px 38px rgba(38, 31, 100, 0.09);
  transform: translateY(-4px);
}

.sector-emoji {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: #f2f1fa;
  font-size: 1.5rem;
}

.sector-card h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.sector-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.sector-card > a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: #eeecff;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.sector-card:hover > a {
  color: #fff;
  background: var(--primary);
}

.benefits-section {
  overflow: hidden;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.benefits-visual {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.5), transparent 32%),
    linear-gradient(145deg, #6755ed, #9360f5);
}

.benefits-visual::before,
.benefits-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.benefits-visual::before {
  width: 290px;
  height: 290px;
  transform: translate(-46%, -42%);
}

.benefits-visual::after {
  width: 190px;
  height: 190px;
  transform: translate(96%, 96%);
}

.benefits-panel {
  position: relative;
  z-index: 2;
  width: min(330px, calc(100% - 46px));
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 30px 70px rgba(40, 22, 125, 0.3);
  text-align: center;
  backdrop-filter: blur(12px);
}

.mini-label {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 14px auto 11px;
}

.score-ring svg {
  width: 100%;
  transform: rotate(-90deg);
}

.score-ring circle {
  fill: none;
  stroke-width: 9;
}

.ring-track {
  stroke: #ebeaf4;
}

.ring-progress {
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-dasharray: 320.4;
  stroke-dashoffset: 44.9;
}

.score-ring > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 2px;
  transform: none;
}

.score-ring strong {
  display: block;
  font-size: 2.4rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.score-ring small {
  display: block;
  margin-top: -0.28em;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.benefits-panel > p {
  color: #505267;
  font-size: 0.85rem;
  font-weight: 650;
}

.progress-list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
  text-align: left;
}

.progress-list span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  color: #696b7b;
  font-size: 0.69rem;
}

.progress-list span b {
  color: #4e5063;
}

.progress-list i {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: #ececf3;
  overflow: hidden;
}

.progress-list em {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #9d62f5);
}

.benefits-copy > p {
  max-width: 620px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}

.benefits-list > div {
  display: flex;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.benefits-list > div > span {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
}

.benefits-list h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.benefits-list p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.trust-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(91, 76, 240, 0.11), transparent 26%),
    radial-gradient(circle at 88% 0, rgba(56, 188, 255, 0.09), transparent 24%),
    #fbfbfe;
}

.trust-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.trust-orb-one {
  top: -120px;
  left: -160px;
  width: 300px;
  height: 300px;
  background: rgba(91, 76, 240, 0.08);
  filter: blur(18px);
}

.trust-orb-two {
  right: -120px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  background: rgba(61, 196, 255, 0.08);
  filter: blur(24px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.trust-card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid #e6e7f1;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fafafe);
  box-shadow: 0 16px 38px rgba(35, 32, 84, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-card:hover {
  border-color: #d6d2f7;
  box-shadow: 0 22px 46px rgba(54, 44, 123, 0.1);
  transform: translateY(-5px);
}

.trust-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: #edeaff;
}

.trust-icon-purple {
  color: #7a44e3;
  background: #f0e8ff;
}

.trust-icon-cyan {
  color: #0c97c2;
  background: #e2f6ff;
}

.trust-icon-green {
  color: #1b8961;
  background: #e3f7f0;
}

.trust-icon-orange {
  color: #c56c10;
  background: #fff0df;
}

.trust-icon-pink {
  color: #cc4f7a;
  background: #ffe5f0;
}

.trust-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.trust-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.techless-section {
  background: #fff;
}

.techless-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  align-items: center;
  gap: 28px;
}

.techless-copy > p {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.techless-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.techless-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #e7e8f2;
  border-radius: 16px;
  background: #fafafe;
  color: #45485b;
  font-size: 0.88rem;
  line-height: 1.5;
}

.techless-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #18775a;
  background: #e4f7ef;
  font-size: 0.72rem;
  font-weight: 900;
}

.techless-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e5e6f0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(91, 76, 240, 0.08), transparent 28%),
    #fbfbff;
  box-shadow: 0 18px 42px rgba(34, 31, 82, 0.06);
}

.techless-panel-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #ececf5;
}

.techless-panel-card strong {
  display: block;
  margin-bottom: 4px;
  color: #2d3040;
  font-size: 0.95rem;
}

.techless-panel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.techless-panel-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: #eceaff;
}

.techless-panel-icon-purple {
  color: #7a44e3;
  background: #f0e8ff;
}

.techless-panel-icon-green {
  color: #1b8961;
  background: #e4f7ef;
}

.techless-panel-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modernize-section {
  background:
    linear-gradient(180deg, #f7f8fd, #fafafe 100%);
}

.modernize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.modernize-card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid #e4e5ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(32, 30, 74, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.modernize-card:hover {
  border-color: #d6d2f7;
  box-shadow: 0 22px 48px rgba(54, 44, 123, 0.1);
  transform: translateY(-4px);
}

.modernize-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--primary);
  background: #eeeaff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.modernize-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.modernize-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.pre-start-section {
  background: #fff;
}

.pre-start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  gap: 28px;
}

.pre-start-copy p {
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

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

.pre-start-faq details {
  padding: 0;
  border: 1px solid #e6e7f1;
  border-radius: 18px;
  background: #fafafe;
  box-shadow: 0 12px 30px rgba(37, 35, 84, 0.05);
  overflow: hidden;
}

.pre-start-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: #2f3142;
  font-size: 0.95rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.pre-start-faq summary span {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eceaff;
}

.pre-start-faq summary span::before,
.pre-start-faq summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--primary);
  transform: translate(-50%, -50%);
}

.pre-start-faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.pre-start-faq details[open] summary span::after {
  opacity: 0;
}

.pre-start-faq p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.58;
}

.trust-cta-section {
  padding: 24px 0 0;
  background: linear-gradient(180deg, #fff, #f7f7fc);
}

.trust-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 30px;
  border: 1px solid #e3e4ee;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(91, 76, 240, 0.08), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(61, 196, 255, 0.08), transparent 22%),
    #fff;
  box-shadow: 0 18px 44px rgba(40, 35, 92, 0.07);
}

.trust-cta-inner > div {
  max-width: 720px;
}

.trust-cta-inner span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-cta-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.trust-cta-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.plans-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(91, 76, 240, 0.14), transparent 35%),
    linear-gradient(180deg, #f8f8fc, #f4f5fa);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 32px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 680px;
  flex-direction: column;
  padding: 34px 30px 30px;
  border: 1px solid #e1e2eb;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(247, 247, 252, 0.6), transparent 24%),
    #fff;
  box-shadow: 0 15px 42px rgba(35, 32, 84, 0.07);
  overflow: visible;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(90deg, transparent, #beb8ee, transparent);
}

.plan-card:hover {
  border-color: #cbc6f2;
  box-shadow: 0 22px 50px rgba(37, 31, 99, 0.11);
  transform: translateY(-6px);
}

.plan-popular {
  border: 2px solid var(--primary);
  background:
    radial-gradient(circle at 100% 0, rgba(91, 76, 240, 0.12), transparent 35%),
    linear-gradient(180deg, #faf9ff, #fff 30%);
  box-shadow: 0 25px 60px rgba(74, 56, 178, 0.17);
  transform: translateY(-12px);
}

.plan-popular::before {
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #9c62f5, var(--cyan));
}

.plan-popular:hover {
  transform: translateY(-18px);
}

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.plan-icon {
  display: grid;
  width: 51px;
  height: 51px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: #edebff;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.plan-card:hover .plan-icon {
  transform: rotate(-4deg) scale(1.05);
}

.plan-popular .plan-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8e5cf6);
  box-shadow: 0 11px 24px rgba(91, 76, 240, 0.23);
}

.plan-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-head h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.plan-type {
  display: block;
  margin-bottom: 2px;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-description {
  min-height: 76px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.plan-price-block {
  display: flex;
  flex-direction: column;
  margin: 21px 0 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-price-block > span {
  color: #9395a4;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price-block strong {
  margin: 1px 0 2px;
  color: #282a3d;
  font-size: 2.05rem;
  letter-spacing: -0.055em;
}

.plan-popular .plan-price-block strong {
  color: var(--primary-dark);
}

.plan-price-block small {
  color: var(--muted);
  font-size: 0.7rem;
}

.plan-card ul {
  margin: 0 0 28px;
}

.plan-card li {
  margin: 11px 0;
  padding-left: 23px;
  color: #505366;
  font-size: 0.84rem;
}

.plan-card .button {
  margin-top: auto;
  min-height: 52px;
}

.diagnosis-section {
  position: relative;
  padding: 112px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(48, 37, 143, 0.96), rgba(82, 55, 178, 0.94)),
    #4130a7;
  overflow: hidden;
}

.diagnosis-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(120deg, #000, transparent 75%);
}

.diagnosis-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.diagnosis-orb-one {
  top: -220px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(255, 255, 255, 0.05);
}

.diagnosis-orb-two {
  bottom: -180px;
  left: -160px;
  width: 400px;
  height: 400px;
  background: rgba(124, 189, 255, 0.08);
}

.diagnosis-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.light-kicker {
  color: #c9c3ff;
}

.diagnosis-copy h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4.4vw, 3.7rem);
}

.diagnosis-copy > p {
  margin-bottom: 32px;
  color: #d4d1ee;
  font-size: 1.06rem;
}

.diagnosis-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 15px 0;
  color: #e5e3f6;
  font-size: 0.91rem;
}

.diagnosis-copy li span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #1b745b;
  background: #bcf1df;
  font-size: 0.7rem;
  font-weight: 900;
}

.diagnosis-contact {
  display: flex;
  gap: 8px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9b5d9;
  font-size: 0.86rem;
}

.diagnosis-contact a {
  color: #fff;
  font-weight: 700;
}

.form-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 35px 90px rgba(24, 17, 91, 0.32);
}

.form-header {
  position: relative;
  margin-bottom: 27px;
}

.form-step {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #eeecff;
  font-size: 0.67rem;
  font-weight: 800;
}

.form-header h3 {
  margin-bottom: 7px;
  font-size: 1.45rem;
}

.form-header p {
  color: var(--muted);
  font-size: 0.83rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #383a4c;
  font-size: 0.76rem;
  font-weight: 750;
}

.field label span,
.privacy-check b {
  color: #d84c61;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dfe0e9;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: #fbfbfd;
  font-size: 0.86rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  height: 47px;
  padding: 0 13px;
}

.field textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a3a5b1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #8477f3;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(91, 76, 240, 0.1);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #df5a6c;
  box-shadow: 0 0 0 3px rgba(223, 90, 108, 0.08);
}

.field-error,
.privacy-error {
  display: none;
  margin-top: 5px;
  color: #c93e54;
  font-size: 0.69rem;
}

.field.is-invalid .field-error,
.privacy-check.is-invalid + .privacy-error {
  display: block;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 1px 0 0;
  color: #707284;
  cursor: pointer;
  font-size: 0.72rem;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--primary);
}

.privacy-check.is-invalid {
  color: #c93e54;
}

.form-submit {
  margin-top: 21px;
  border: 0;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 13px 0 0;
  color: #9698a7;
  font-size: 0.67rem;
}

.form-privacy svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #bce8d8;
  border-radius: 11px;
  color: #155e48;
  background: #eaf9f3;
}

.form-success.is-visible {
  display: flex;
}

.form-success > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #229e76;
  font-size: 0.75rem;
  font-weight: 900;
}

.form-success strong {
  font-size: 0.88rem;
}

.form-success p {
  margin: 2px 0 0;
  color: #3d7a67;
  font-size: 0.76rem;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.faq-intro > p {
  margin-bottom: 25px;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  color: #292b3e;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f0eff7;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  color: #fff;
  background: var(--primary);
}

.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after {
  background: #fff;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 50px 24px 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  padding: 38px 0 76px;
  background: #fff;
}

.final-cta-inner {
  position: relative;
  display: flex;
  min-height: 245px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 58px 64px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(120deg, #302396, #6f50e4);
  overflow: hidden;
}

.final-cta-inner::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  border: 48px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.final-cta-inner > * {
  position: relative;
  z-index: 2;
}

.final-cta-inner span {
  color: #c8c1f4;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta-inner h2 {
  max-width: 680px;
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.final-cta-inner .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 75px 0 26px;
  color: #b8b9c8;
  background: #171727;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.75fr);
  gap: 60px;
  padding-bottom: 55px;
}

.brand-light {
  color: #fff;
}

.footer-brand > p {
  max-width: 340px;
  margin: 20px 0;
  color: #9698aa;
  font-size: 0.87rem;
}

.footer-email {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
}

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

.footer-column h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.footer-column a {
  color: #9698aa;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.legal-note {
  margin-top: 7px;
  color: #6f7183;
  font-size: 0.69rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid #292a3c;
  color: #747688;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 11px 16px 11px 13px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #fff;
  background: #20ad68;
  box-shadow: 0 12px 30px rgba(20, 127, 77, 0.28);
  font-size: 0.8rem;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  box-shadow: 0 16px 34px rgba(20, 127, 77, 0.34);
  transform: translateY(-3px);
}

.whatsapp-button svg {
  width: 26px;
  fill: currentColor;
}

.js.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5.2vw, 4rem);
  }

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

  .problem-card {
    border-bottom: 1px solid var(--line);
  }

  .problem-card:nth-child(3) {
    border-right: 0;
  }

  .problem-card:nth-child(4),
  .problem-card:nth-child(5) {
    border-bottom: 0;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 46px 10px;
  }

  .process-list::before {
    display: none;
  }

  .system-flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .system-flow::before {
    display: none;
  }

  .flow-arrow {
    display: none;
  }

  .flow-item {
    min-width: 0;
  }

  .comparison-grid {
    gap: 40px;
    padding: 54px 42px;
  }

  .benefits-grid {
    gap: 60px;
  }

  .diagnosis-grid {
    gap: 55px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding: 88px 0;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 13px;
    border: 1px solid #e2e2ed;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 60px rgba(31, 28, 80, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 9px;
  }

  .main-nav a:hover {
    background: var(--surface-purple);
  }

  .main-nav .mobile-nav-cta {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #7359f4);
  }

  .main-nav .mobile-nav-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), #684bdc);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 122px;
  }

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

  .hero-copy {
    max-width: 760px;
    padding-bottom: 14px;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .dashboard {
    transform: none;
  }

  .client-strip {
    align-items: center;
    flex-direction: column;
    padding: 24px 0;
  }

  .client-strip div {
    justify-content: center;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .local-seo-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .local-seo-copy {
    max-width: 720px;
  }

  .search-preview {
    max-width: 540px;
  }

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

  .local-seo-point:last-child {
    grid-column: 1 / -1;
  }

  .system-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 27px 15px;
  }

  .flow-item::after {
    right: calc(50% - 37px);
  }

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

  .comparison-copy {
    max-width: 650px;
  }

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

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

  .benefits-visual {
    min-height: 480px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-popular,
  .plan-popular:hover {
    transform: none;
  }

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

  .diagnosis-copy {
    max-width: 680px;
  }

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

  .faq-intro {
    position: static;
    max-width: 650px;
  }

  .final-cta-inner {
    padding: 48px 40px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 45px;
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-trust {
    gap: 9px 14px;
    font-size: 0.75rem;
  }

  .hero-visual {
    padding-top: 30px;
  }

  .dashboard {
    padding: 13px;
    border-radius: 18px;
  }

  .dashboard-title strong {
    font-size: 0.76rem;
  }

  .dashboard-title span {
    font-size: 0.61rem;
  }

  .live-badge {
    display: none;
  }

  .metric-card {
    padding: 12px;
  }

  .metric-head span:first-child {
    max-width: 76px;
  }

  .metric-card > strong {
    font-size: 1.34rem;
  }

  .floating-note {
    display: none;
  }

  .client-strip div {
    gap: 12px 19px;
  }

  .client-strip div span {
    font-size: 0.76rem;
  }

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

  .section-heading h2,
  .comparison-copy h2,
  .benefits-copy h2,
  .diagnosis-copy h2,
  .faq-intro h2 {
    font-size: 2.15rem;
  }

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

  .problem-card {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .problem-card:last-child {
    border-bottom: 0 !important;
  }

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

  .service-card {
    min-height: 390px;
    padding: 27px;
  }

  .local-seo-copy h2 {
    font-size: 2.15rem;
  }

  .local-seo-copy .local-seo-lead {
    font-size: 1rem;
  }

  .local-seo-copy .button {
    width: 100%;
  }

  .search-preview {
    padding: 10px;
  }

  .search-result {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
  }

  .search-map {
    min-height: 112px;
  }

  .search-business {
    gap: 7px;
    padding-right: 0;
  }

  .local-seo-points {
    grid-template-columns: 1fr;
  }

  .local-seo-point,
  .local-seo-point:last-child {
    grid-column: auto;
  }

  .local-seo-point {
    gap: 13px;
    padding: 19px 17px;
  }

  .local-seo-point > div {
    padding-right: 0;
  }

  .point-number {
    display: none;
  }

  .system-flow {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px 14px;
  }

  .comparison-section {
    padding-top: 20px;
  }

  .comparison-grid {
    gap: 38px;
    padding: 43px 22px;
  }

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

  .after-card {
    transform: none;
  }

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

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 8px;
  }

  .process-item {
    padding: 0 7px;
  }

  .process-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

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

  .sector-card {
    min-height: 132px;
    padding: 20px;
  }

  .benefits-visual {
    min-height: 440px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 28px 23px;
  }

  .diagnosis-section {
    padding: 75px 0;
  }

  .diagnosis-grid {
    gap: 45px;
  }

  .diagnosis-contact {
    flex-direction: column;
  }

  .form-card {
    padding: 27px 19px;
    border-radius: 19px;
  }

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

  .form-step {
    position: static;
    display: inline-flex;
    margin-bottom: 10px;
  }

  .faq-list summary {
    font-size: 0.92rem;
  }

  .faq-list details p {
    margin-right: 4px;
  }

  .final-cta {
    padding: 20px 0 55px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 24px;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-button span {
    display: none;
  }
}

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

  .chart-card {
    display: none;
  }

  .dashboard {
    max-width: 315px;
    margin-inline: auto;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .sector-card {
    grid-template-columns: auto 1fr;
  }

  .sector-card > a {
    display: none;
  }

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

  .footer-column:last-child {
    grid-column: auto;
  }
}

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

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

  .js.js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Internal SEO pages */
.internal-page {
  background: #fff;
}

.internal-page .site-header {
  border-bottom-color: rgba(226, 227, 237, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.main-nav a[aria-current="page"] {
  color: var(--primary-dark);
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.internal-hero {
  position: relative;
  padding: 132px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(91, 76, 240, 0.12), transparent 29%),
    radial-gradient(circle at 90% 15%, rgba(47, 183, 211, 0.1), transparent 25%),
    linear-gradient(180deg, #fbfbff, #fff);
  overflow: hidden;
}

.internal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(#c8c8e4 1px, transparent 1px), linear-gradient(90deg, #c8c8e4 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}

.internal-hero::after {
  content: "";
  position: absolute;
  top: 70px;
  right: -90px;
  width: 250px;
  height: 250px;
  border: 45px solid rgba(91, 76, 240, 0.05);
  border-radius: 50%;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.76rem;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #b8bac7;
}

.breadcrumbs a {
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs [aria-current="page"] {
  color: #424559;
  font-weight: 700;
}

.internal-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: 88px;
}

.internal-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 23px;
  font-size: clamp(3rem, 5.1vw, 4.7rem);
  letter-spacing: -0.06em;
}

.internal-hero-copy h1 span {
  color: transparent;
  background: linear-gradient(115deg, var(--primary), #a34ff0);
  background-clip: text;
  -webkit-background-clip: text;
}

.internal-hero-lead {
  max-width: 720px;
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-size: 1.11rem;
}

.internal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.internal-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.internal-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.internal-proof li::before {
  content: "✓";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #16795a;
  background: #e2f7ef;
  font-size: 0.65rem;
  font-weight: 900;
}

.internal-hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(214, 211, 242, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 75px rgba(42, 35, 113, 0.17);
  backdrop-filter: blur(14px);
}

.internal-hero-card::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(91, 76, 240, 0.14), transparent 70%);
  filter: blur(20px);
}

.internal-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.internal-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8c5af3);
  box-shadow: 0 12px 25px rgba(91, 76, 240, 0.24);
}

.internal-card-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.internal-card-top span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.internal-card-top strong {
  display: block;
  margin-top: 2px;
  font-size: 1.06rem;
}

.internal-card-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.internal-card-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 13px;
  border-radius: 11px;
  color: #575a6e;
  background: #f7f7fb;
  font-size: 0.79rem;
}

.internal-card-list li span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: #178262;
  background: #e2f6ef;
  font-size: 0.66rem;
  font-weight: 900;
}

.content-section {
  padding: 105px 0;
}

.content-section-soft {
  background: var(--surface-soft);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: start;
  gap: 90px;
}

.content-copy {
  max-width: 760px;
}

.content-copy h2,
.feature-section-heading h2,
.related-heading h2,
.diagnostic-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 3.8vw, 3.25rem);
}

.content-copy h3 {
  margin: 35px 0 11px;
  font-size: 1.35rem;
}

.content-copy p {
  color: var(--ink-soft);
}

.content-copy strong {
  color: #34364b;
}

.content-checks {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.content-checks li {
  position: relative;
  padding: 14px 17px 14px 46px;
  border: 1px solid #e6e6ef;
  border-radius: 12px;
  color: #4f5266;
  background: #fbfbfd;
  font-size: 0.9rem;
}

.content-checks li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 16px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--primary);
  font-size: 0.65rem;
  font-weight: 900;
}

.content-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 27px;
  border: 1px solid #dedbea;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(91, 76, 240, 0.09), transparent 38%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.content-sidebar .section-kicker {
  margin-bottom: 12px;
}

.content-sidebar h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.content-sidebar p {
  color: var(--muted);
  font-size: 0.84rem;
}

.content-sidebar .button {
  width: 100%;
  margin-top: 9px;
}

.feature-section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.feature-section-heading > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

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

.detail-feature-card {
  padding: 28px;
  border: 1px solid #e2e3ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(34, 31, 82, 0.04);
  transition: transform 0.23s ease, border-color 0.23s ease, box-shadow 0.23s ease;
}

.detail-feature-card:hover {
  border-color: #ccc7f5;
  box-shadow: 0 18px 40px rgba(38, 31, 100, 0.09);
  transform: translateY(-5px);
}

.detail-feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: #eceaff;
}

.detail-feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-feature-card:nth-child(3n + 2) .detail-feature-icon {
  color: #168ca4;
  background: #e4f7fb;
}

.detail-feature-card:nth-child(3n + 3) .detail-feature-icon {
  color: #8b4cc4;
  background: #f4eaff;
}

.detail-feature-card h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.detail-feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.practical-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
  padding: 58px;
  border-radius: 27px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, 0.13), transparent 30%),
    linear-gradient(125deg, #302394, #6b4edf);
  box-shadow: 0 25px 65px rgba(45, 32, 135, 0.2);
}

.practical-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
}

.practical-panel p {
  color: #d7d3f3;
}

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

.practical-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: #f2f0ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
}

.practical-list li span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: #2c247a;
  background: #cfc9ff;
  font-size: 0.66rem;
  font-weight: 900;
}

.related-section {
  padding: 100px 0;
  background: #fff;
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 38px;
}

.related-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.related-heading p {
  max-width: 410px;
  margin-bottom: 5px;
  color: var(--ink-soft);
}

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

.related-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid #e1e2ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 27px rgba(34, 31, 82, 0.04);
  transition: transform 0.23s ease, border-color 0.23s ease, box-shadow 0.23s ease;
}

.related-card:hover {
  border-color: #c9c3f3;
  box-shadow: 0 18px 42px rgba(38, 31, 100, 0.1);
  transform: translateY(-5px);
}

.related-card > span {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.related-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.83rem;
}

.related-card .text-link {
  margin-top: auto;
}

.internal-cta {
  padding: 0 0 76px;
  background: #fff;
}

.internal-cta-box {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 58px 64px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.14), transparent 29%),
    linear-gradient(120deg, #302396, #6f50e4);
  overflow: hidden;
}

.internal-cta-box::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -155px;
  width: 310px;
  height: 310px;
  border: 48px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.internal-cta-copy,
.internal-cta-box .button {
  position: relative;
  z-index: 2;
}

.internal-cta-copy span {
  color: #c9c3f4;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.internal-cta-copy h2 {
  max-width: 690px;
  margin: 8px 0 10px;
  font-size: clamp(2rem, 3.7vw, 3.15rem);
}

.internal-cta-copy p {
  max-width: 650px;
  color: #d7d3ee;
}

.internal-cta-box .button {
  flex: 0 0 auto;
}

.sector-page .internal-card-icon {
  background: linear-gradient(135deg, #1c9e7a, #45bfa0);
  box-shadow: 0 12px 25px rgba(28, 158, 122, 0.23);
}

.sector-page .internal-hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(32, 167, 121, 0.11), transparent 29%),
    radial-gradient(circle at 90% 15%, rgba(91, 76, 240, 0.09), transparent 25%),
    linear-gradient(180deg, #fbfffd, #fff);
}

.diagnostic-page-hero {
  padding-bottom: 105px;
}

.diagnostic-page-grid {
  align-items: start;
}

.diagnostic-page-grid .form-card {
  box-shadow: 0 30px 80px rgba(38, 31, 103, 0.17);
}

.diagnostic-page-grid .form-card::before {
  content: "";
  position: absolute;
}

.diagnostic-benefits {
  padding: 92px 0;
  background: var(--surface-soft);
}

.diagnostic-intro {
  max-width: 760px;
  margin: 0 auto 43px;
  text-align: center;
}

.diagnostic-intro > p {
  color: var(--ink-soft);
}

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

.diagnostic-step {
  padding: 30px;
  border: 1px solid #e2e3ed;
  border-radius: 18px;
  background: #fff;
}

.diagnostic-step > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--primary);
  font-size: 0.72rem;
  font-weight: 850;
}

.diagnostic-step h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.diagnostic-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 920px) {
  .internal-hero-grid,
  .diagnostic-page-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .internal-hero-copy {
    max-width: 760px;
  }

  .internal-hero-card,
  .diagnostic-page-grid .form-card {
    width: min(650px, 100%);
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .content-sidebar {
    position: static;
    max-width: 620px;
  }

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

  .diagnostic-step:last-child {
    grid-column: 1 / -1;
  }

  .practical-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .related-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .internal-hero {
    padding: 106px 0 70px;
  }

  .breadcrumbs {
    margin-bottom: 25px;
  }

  .internal-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .internal-hero-lead {
    font-size: 1rem;
  }

  .internal-hero-actions {
    flex-direction: column;
  }

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

  .internal-hero-card {
    padding: 22px;
    border-radius: 19px;
  }

  .content-section,
  .related-section {
    padding: 72px 0;
  }

  .content-copy h2,
  .feature-section-heading h2,
  .related-heading h2,
  .diagnostic-intro h2 {
    font-size: 2.08rem;
  }

  .detail-feature-grid,
  .related-grid,
  .diagnostic-steps {
    grid-template-columns: 1fr;
  }

  .diagnostic-step:last-child {
    grid-column: auto;
  }

  .detail-feature-card {
    padding: 24px;
  }

  .practical-panel {
    padding: 39px 23px;
    border-radius: 21px;
  }

  .internal-cta {
    padding-bottom: 55px;
  }

  .internal-cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 24px;
  }

  .internal-cta-box .button {
    width: 100%;
  }

  .diagnostic-page-hero {
    padding-bottom: 76px;
  }
}

/* Editable client proposal */
.proposal-page {
  background:
    radial-gradient(circle at 5% 0, rgba(91, 76, 240, 0.08), transparent 24%),
    #f3f4f8;
}

.proposal-header {
  border-bottom: 1px solid rgba(220, 221, 233, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(31, 29, 78, 0.05);
  backdrop-filter: blur(18px);
}

.proposal-header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.proposal-header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.proposal-header-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #dcd9f6;
  border-radius: 999px;
  color: #5146c9;
  background: #f3f1ff;
  font-size: 0.73rem;
  font-weight: 800;
}

.proposal-header-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2aaf7e;
  box-shadow: 0 0 0 4px rgba(42, 175, 126, 0.13);
}

.proposal-print svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposal-main {
  padding: 112px 0 58px;
}

.proposal-container {
  width: min(1080px, calc(100% - 40px));
}

.proposal-cover {
  position: relative;
  min-height: 590px;
  padding: 72px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(125deg, #211870, #5740c8 58%, #7556e8);
  box-shadow: 0 30px 80px rgba(39, 27, 124, 0.25);
  overflow: hidden;
}

.proposal-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(135deg, #000, transparent 78%);
}

.proposal-cover-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.proposal-cover-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.proposal-cover-orb-one {
  top: -130px;
  right: -100px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(255, 255, 255, 0.06);
}

.proposal-cover-orb-two {
  bottom: -170px;
  left: -125px;
  width: 330px;
  height: 330px;
  background: rgba(72, 200, 218, 0.08);
}

.proposal-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 72px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #e7e4fb;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.proposal-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57d6a7;
  box-shadow: 0 0 0 4px rgba(87, 214, 167, 0.14);
}

.proposal-overline {
  margin-bottom: 7px;
  color: #bbb4ed;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proposal-cover h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 5.5rem);
  letter-spacing: -0.065em;
}

.proposal-cover-lead {
  max-width: 690px;
  margin-bottom: 48px;
  color: #d8d4f2;
  font-size: 1.08rem;
}

.proposal-cover-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 760px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.proposal-cover-summary > div {
  padding: 18px 18px 18px 0;
}

.proposal-cover-summary span,
.proposal-cover-summary strong {
  display: block;
}

.proposal-cover-summary span {
  margin-bottom: 3px;
  color: #a9a3da;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proposal-cover-summary strong {
  font-size: 0.87rem;
}

.proposal-fact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(217, 214, 238, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(45, 34, 114, 0.08);
}

.proposal-fact-card > div {
  padding: 14px 15px;
  border-radius: 14px;
  background: #fbfbff;
  box-shadow: inset 0 0 0 1px #ececf6;
}

.proposal-fact-card span {
  display: block;
  margin-bottom: 7px;
  color: #7f8194;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proposal-fact-card strong {
  color: #2d3040;
  font-size: 0.9rem;
}

.proposal-cover-mark {
  position: absolute;
  right: 58px;
  bottom: 48px;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 19px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.proposal-cover-mark svg {
  width: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.proposal-section {
  margin-top: 24px;
  padding: 55px 58px;
  border: 1px solid #e1e2eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 46px rgba(35, 32, 84, 0.06);
}

.proposal-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  margin-bottom: 34px;
}

.proposal-section-number {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #dcd9f6;
  border-radius: 12px;
  color: var(--primary);
  background: #f0eeff;
  font-size: 0.7rem;
  font-weight: 850;
}

.proposal-section-heading .section-kicker {
  margin-bottom: 5px;
}

.proposal-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.proposal-section-intro {
  max-width: 790px;
  margin: -10px 0 33px 61px;
  color: var(--ink-soft);
}

.proposal-objective {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 18px;
}

.proposal-objective blockquote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin: 0;
  padding: 26px 24px;
  border: 1px solid #e5e6f0;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fafafe);
  box-shadow: 0 14px 34px rgba(33, 30, 79, 0.06);
}

.proposal-objective blockquote svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposal-objective blockquote p {
  color: #45485b;
  font-size: 0.92rem;
  line-height: 1.66;
}

.proposal-note-box {
  padding: 24px 22px;
  border: 1px solid #e5e6f0;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8f8fd, #fff);
  box-shadow: 0 14px 34px rgba(33, 30, 79, 0.05);
}

.proposal-note-box span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-note-box p,
.proposal-note-final {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.proposal-checklist-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.proposal-checklist-card {
  padding: 26px 24px;
  border: 1px solid #e5e6f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(33, 30, 79, 0.06);
}

.proposal-checklist-card h3 {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.proposal-checklist-card-soft {
  background:
    radial-gradient(circle at 100% 0, rgba(91, 76, 240, 0.08), transparent 28%),
    #fbfbff;
}

.proposal-checklist-card-soft p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.proposal-checklist-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proposal-checklist-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f5266;
  font-size: 0.87rem;
}

.proposal-checklist-list li span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: #16815f;
  background: #e3f7f0;
  font-size: 0.68rem;
  font-weight: 900;
}

.proposal-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proposal-deliverable-card {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 22px 20px;
  border: 1px solid #e5e6f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(33, 30, 79, 0.05);
}

.proposal-deliverable-card span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: #eceaff;
  font-size: 0.68rem;
  font-weight: 850;
}

.proposal-deliverable-card p {
  margin: 0;
  color: #36384c;
  font-size: 0.92rem;
  font-weight: 700;
}

.proposal-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.proposal-option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #e4e5ef;
  border-radius: 16px;
  background: #fff;
}

.proposal-option-card span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--primary);
  background: #eeeaff;
  font-size: 0.68rem;
  font-weight: 850;
}

.proposal-option-card strong {
  color: #373a4d;
  font-size: 0.9rem;
}

.proposal-diagnosis-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  gap: 32px;
}

.proposal-diagnosis-grid blockquote {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  padding: 35px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(145deg, #5c4beb, #8a5ff2);
  overflow: hidden;
}

.proposal-diagnosis-grid blockquote svg {
  position: absolute;
  top: 28px;
  left: 29px;
  width: 37px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.8;
}

.proposal-diagnosis-grid blockquote p {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 650;
  line-height: 1.55;
}

.proposal-issues {
  padding: 6px 0;
}

.proposal-issues > h3 {
  margin-bottom: 18px;
  font-size: 1.15rem;
}

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

.proposal-issue-grid > div {
  min-height: 111px;
  padding: 18px;
  border: 1px solid #e6e6ee;
  border-radius: 14px;
  background: #fafafd;
}

.proposal-issue-grid span {
  display: block;
  margin-bottom: 9px;
  color: #b0b2c0;
  font-size: 0.62rem;
  font-weight: 850;
}

.proposal-issue-grid p {
  margin: 0;
  color: #424559;
  font-size: 0.86rem;
  font-weight: 700;
}

.proposal-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proposal-solution-grid article {
  min-height: 180px;
  padding: 23px;
  border: 1px solid #e3e4ed;
  border-radius: 16px;
  background: #fbfbfd;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.proposal-solution-grid article:hover {
  border-color: #cbc5f5;
  box-shadow: 0 14px 34px rgba(38, 31, 100, 0.08);
  transform: translateY(-4px);
}

.proposal-solution-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: #eceaff;
}

.proposal-solution-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposal-solution-grid article:nth-child(3n + 2) .proposal-solution-icon {
  color: #148ba4;
  background: #e4f7fb;
}

.proposal-solution-grid article:nth-child(3n + 3) .proposal-solution-icon {
  color: #198262;
  background: #e3f7f0;
}

.proposal-solution-grid h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.proposal-solution-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.proposal-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.proposal-included-column {
  padding: 25px;
  border: 1px solid #e4e4ed;
  border-radius: 16px;
  background: #fbfbfd;
}

.proposal-included-column h3 {
  margin-bottom: 17px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e5ee;
  font-size: 1.02rem;
}

.proposal-included-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proposal-included-column li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #5a5d70;
  font-size: 0.8rem;
}

.proposal-included-column li span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  color: #16805f;
  background: #e3f7f0;
  font-size: 0.6rem;
  font-weight: 900;
}

.proposal-commercial {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  margin-top: 24px;
}

.proposal-timeline-card,
.proposal-price-card {
  position: relative;
  min-height: 330px;
  padding: 40px;
  border-radius: 24px;
}

.proposal-timeline-card {
  border: 1px solid #e0e1eb;
  background: #fff;
  box-shadow: 0 15px 46px rgba(35, 32, 84, 0.06);
}

.proposal-commercial-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: #eceaff;
}

.proposal-commercial-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposal-timeline-card .section-kicker {
  display: block;
  margin-bottom: 5px;
}

.proposal-timeline-card > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.25rem;
  letter-spacing: -0.05em;
}

.proposal-timeline-card > p {
  color: var(--muted);
  font-size: 0.82rem;
}

.proposal-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 28px;
}

.proposal-timeline span {
  height: 6px;
  border-radius: 99px;
  background: #dedee9;
}

.proposal-timeline span.is-active,
.proposal-timeline span:nth-child(2) {
  background: var(--primary);
}

.proposal-timeline-card small {
  display: block;
  margin-top: 9px;
  color: #9294a4;
  font-size: 0.62rem;
}

.proposal-price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15), transparent 30%),
    linear-gradient(130deg, #2b207f, #6750dc);
  box-shadow: 0 24px 65px rgba(45, 32, 135, 0.23);
  overflow: hidden;
}

.proposal-price-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -145px;
  width: 275px;
  height: 275px;
  border: 45px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.proposal-price-card > * {
  position: relative;
  z-index: 2;
}

.proposal-price-label {
  color: #c7c1ef;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-price {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 8px 0 12px;
}

.proposal-price strong {
  font-size: clamp(2.8rem, 5.5vw, 4.7rem);
  letter-spacing: -0.07em;
}

.proposal-price span {
  color: #c5bfea;
  font-size: 1rem;
  font-weight: 700;
}

.proposal-price-card > p {
  color: #d4d0eb;
  font-size: 0.86rem;
}

.proposal-price-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.proposal-price-card li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #e8e6f7;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.7rem;
}

.proposal-payment-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proposal-payment-button {
  display: grid;
  min-height: 102px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border: 1px solid #e1e2eb;
  border-radius: 15px;
  background: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.proposal-payment-button:hover {
  border-color: #c9c3f3;
  box-shadow: 0 14px 34px rgba(38, 31, 100, 0.09);
  transform: translateY(-4px);
}

.proposal-payment-button > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--primary);
}

.proposal-payment-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposal-payment-paypal > span {
  background: #1676cf;
}

.proposal-payment-change > span {
  color: #5b4cf0;
  background: #eceaff;
}

.proposal-payment-button div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.proposal-payment-button small {
  color: var(--muted);
  font-size: 0.62rem;
}

.proposal-payment-button strong {
  font-size: 0.86rem;
}

.proposal-payment-button > b {
  color: #9294a5;
}

.proposal-payment-whatsapp {
  border-color: #bdebd6;
  background: linear-gradient(180deg, #f5fff9, #fff);
}

.proposal-payment-whatsapp > span {
  color: #157a58;
  background: #e2f7ef;
}

.proposal-edit-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 19px 0 0 61px;
  color: #898b9b;
  font-size: 0.7rem;
}

.proposal-edit-note > span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: #eceaff;
  font-weight: 850;
}

.proposal-edit-note code {
  padding: 2px 5px;
  border-radius: 4px;
  color: #6256c8;
  background: #f0eff8;
}

.proposal-conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proposal-conditions article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid #e5e5ed;
  border-radius: 15px;
  background: #fbfbfd;
}

.proposal-conditions article > span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: #eceaff;
  font-size: 0.64rem;
  font-weight: 850;
}

.proposal-conditions h3 {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.proposal-conditions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.proposal-note-final {
  margin: 18px 0 0 61px;
  color: #898b9b;
  font-size: 0.72rem;
}

.proposal-page .proposal-section-heading {
  align-items: start;
}

.proposal-final {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 24px;
  padding: 65px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(120deg, #211870, #654bdd);
  box-shadow: 0 26px 70px rgba(39, 27, 124, 0.22);
  overflow: hidden;
}

.proposal-final::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -155px;
  width: 300px;
  height: 300px;
  border: 46px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.proposal-final > * {
  position: relative;
  z-index: 2;
}

.proposal-final > div:first-child {
  max-width: 650px;
}

.proposal-final > div:first-child > span {
  color: #c6c0eb;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-final h2 {
  margin: 8px 0 13px;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
}

.proposal-final p {
  color: #d4d0eb;
}

.proposal-final-actions {
  display: flex;
  min-width: 235px;
  align-items: stretch;
  flex-direction: column;
  gap: 13px;
}

.proposal-final-contact {
  color: #d8d4f1;
  font-size: 0.76rem;
  text-align: center;
}

.proposal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 35px 8px 5px;
  color: #858798;
  font-size: 0.72rem;
}

.proposal-footer .brand {
  font-size: 1.05rem;
}

.proposal-footer .brand-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
}

.proposal-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .proposal-cover {
    min-height: 540px;
    padding: 56px;
  }

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

  .proposal-diagnosis-grid,
  .proposal-commercial {
    grid-template-columns: 1fr;
  }

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

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

  .proposal-payment-button {
    min-height: 88px;
  }

  .proposal-final {
    align-items: flex-start;
    flex-direction: column;
  }

  .proposal-final-actions {
    width: min(330px, 100%);
  }
}

@media (max-width: 680px) {
  .proposal-header-status {
    display: none;
  }

  .proposal-print {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .proposal-main {
    padding-top: 94px;
  }

  .proposal-container {
    width: min(1080px, calc(100% - 20px));
  }

  .proposal-cover {
    min-height: 600px;
    padding: 38px 24px;
    border-radius: 21px;
  }

  .proposal-status {
    margin-bottom: 58px;
  }

  .proposal-cover h1 {
    font-size: clamp(2.7rem, 14vw, 3.8rem);
  }

  .proposal-cover-lead {
    font-size: 0.96rem;
  }

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

  .proposal-cover-mark {
    right: 23px;
    bottom: 25px;
    width: 48px;
    height: 48px;
  }

  .proposal-cover-mark svg {
    width: 33px;
  }

  .proposal-section {
    padding: 37px 20px;
    border-radius: 19px;
  }

  .proposal-section-heading {
    gap: 13px;
  }

  .proposal-section-number {
    width: 36px;
    height: 36px;
  }

  .proposal-section-heading h2 {
    font-size: 2rem;
  }

  .proposal-section-intro,
  .proposal-edit-note {
    margin-left: 0;
  }

  .proposal-fact-card,
  .proposal-objective,
  .proposal-checklist-grid,
  .proposal-deliverables-grid,
  .proposal-options-grid {
    grid-template-columns: 1fr;
  }

  .proposal-diagnosis-grid blockquote {
    min-height: 250px;
    padding: 28px;
  }

  .proposal-issue-grid,
  .proposal-solution-grid,
  .proposal-included-grid,
  .proposal-conditions {
    grid-template-columns: 1fr;
  }

  .proposal-timeline-card,
  .proposal-price-card {
    min-height: 310px;
    padding: 32px 25px;
    border-radius: 20px;
  }

  .proposal-payment-button {
    padding: 16px 14px;
  }

  .proposal-note-final {
    margin-left: 0;
  }

  .proposal-final {
    min-height: 390px;
    padding: 45px 24px;
    border-radius: 21px;
  }

  .proposal-final h2 {
    font-size: 2.65rem;
  }

  .proposal-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 8px 0;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  html,
  body {
    color: #15152a;
    background: #fff !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .proposal-header,
  .proposal-edit-note,
  .proposal-print {
    display: none !important;
  }

  .proposal-main {
    padding: 0;
  }

  .proposal-container {
    width: 100%;
  }

  .js.js-ready .proposal-page .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .proposal-cover,
  .proposal-section,
  .proposal-commercial,
  .proposal-final {
    break-inside: avoid;
    box-shadow: none;
  }

  .proposal-cover {
    min-height: 245mm;
    page-break-after: always;
  }

  .proposal-section {
    margin-top: 8mm;
  }

  .proposal-section,
  .proposal-timeline-card {
    border-color: #d8d8e2;
  }

  .proposal-solution-grid article,
  .proposal-included-column,
  .proposal-conditions article {
    break-inside: avoid;
  }

  .proposal-payment-button,
  .proposal-final .button {
    color: inherit;
    text-decoration: none;
  }

  .proposal-footer {
    padding-bottom: 0;
  }
}

/* Lead generation */
.conversion-cta {
  position: relative;
  z-index: 3;
  padding: 30px 0;
}

.conversion-cta-services {
  background: var(--surface-soft);
}

.conversion-cta-sectors {
  background: linear-gradient(180deg, var(--surface-soft), #fff);
}

.conversion-cta-inner {
  display: grid;
  min-height: 122px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 25px 28px;
  border: 1px solid #dedfeb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(35, 32, 84, 0.07);
}

.conversion-cta-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: #eceaff;
}

.conversion-cta-icon-green {
  color: #168563;
  background: #e3f7f0;
}

.conversion-cta-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.conversion-cta-inner > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.conversion-cta-inner span {
  margin-bottom: 3px;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.conversion-cta-inner strong {
  color: #34364a;
  font-size: 0.98rem;
}

.conversion-cta-inner .button {
  white-space: nowrap;
}

.plans-conversion-cta {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 31px;
  padding: 25px 29px;
  border: 1px solid #d8d4f6;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(91, 76, 240, 0.09), transparent 32%),
    #fff;
  box-shadow: 0 14px 40px rgba(35, 32, 84, 0.07);
}

.plans-conversion-cta > div {
  display: flex;
  max-width: 680px;
  flex-direction: column;
}

.plans-conversion-cta span {
  margin-bottom: 3px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plans-conversion-cta strong {
  color: #3e4054;
  font-size: 0.94rem;
}

.plans-conversion-cta .button {
  flex: 0 0 auto;
}

.lead-audit-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(91, 76, 240, 0.08), transparent 27%),
    radial-gradient(circle at 90% 85%, rgba(47, 183, 211, 0.08), transparent 25%),
    #fff;
}

.lead-audit-orb {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 340px;
  height: 340px;
  border: 56px solid rgba(91, 76, 240, 0.04);
  border-radius: 50%;
}

.lead-audit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lead-audit-card {
  display: grid;
  min-height: 170px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  padding: 25px;
  border: 1px solid #e3e4ed;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 9px 28px rgba(34, 31, 82, 0.04);
  transition: transform 0.23s ease, border-color 0.23s ease, box-shadow 0.23s ease;
}

.lead-audit-card:hover {
  border-color: #cbc6f4;
  box-shadow: 0 18px 40px rgba(38, 31, 100, 0.09);
  transform: translateY(-5px);
}

.lead-audit-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: #eceaff;
}

.lead-audit-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-audit-icon-purple {
  color: #8b4cc4;
  background: #f4eaff;
}

.lead-audit-icon-cyan {
  color: #168ca4;
  background: #e4f7fb;
}

.lead-audit-icon-orange {
  color: #c7752d;
  background: #fff1e4;
}

.lead-audit-icon-pink {
  color: #c75286;
  background: #ffedf5;
}

.lead-audit-icon-green {
  color: #168563;
  background: #e3f7f0;
}

.lead-audit-card h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.lead-audit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.lead-trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border: 1px solid #dfdfea;
  border-radius: 17px;
  background: #f8f8fc;
  overflow: hidden;
}

.lead-trust-strip > div {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 11px;
  padding: 18px 20px;
}

.lead-trust-strip > div:not(:last-child) {
  border-right: 1px solid #dfdfea;
}

.lead-trust-strip span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: #eae8ff;
  font-size: 0.67rem;
  font-weight: 900;
}

.lead-trust-strip strong {
  color: #4b4e62;
  font-size: 0.76rem;
  line-height: 1.35;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: -8px 0 25px;
}

.form-progress span {
  height: 4px;
  border-radius: 99px;
  background: #e7e7ef;
}

.form-progress span.is-active {
  background: linear-gradient(90deg, var(--primary), #9a62f5);
}

.form-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 13px;
  color: #4a4c60;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group-label:not(:first-child) {
  margin-top: 8px;
}

.form-group-label span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  color: var(--primary);
  background: #eceaff;
  font-size: 0.62rem;
}

.field select:invalid {
  color: #9698a7;
}

.field select option {
  color: var(--ink);
}

.form-card {
  position: relative;
}

.form-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 35px;
  left: 35px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(90deg, var(--primary), #9c62f5, var(--cyan));
}

.form-success {
  min-height: 76px;
  padding: 17px;
}

.footer-lead-cta {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 60px;
  padding: 30px 34px;
  border: 1px solid #333449;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 0, rgba(112, 86, 245, 0.12), transparent 35%),
    #202033;
}

.footer-lead-cta > div {
  display: flex;
  flex-direction: column;
}

.footer-lead-cta span {
  margin-bottom: 4px;
  color: #9d92ef;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-lead-cta strong {
  color: #fff;
  font-size: 1.1rem;
}

.whatsapp-button {
  min-width: 185px;
  justify-content: flex-start;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .lead-audit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lead-trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .lead-trust-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid #dfdfea;
  }
}

@media (max-width: 680px) {
  .conversion-cta {
    padding: 20px 0;
  }

  .conversion-cta-inner {
    grid-template-columns: auto 1fr;
    padding: 22px 19px;
  }

  .conversion-cta-inner .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .plans-conversion-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 23px 20px;
  }

  .plans-conversion-cta .button {
    width: 100%;
  }

  .lead-audit-grid,
  .lead-trust-strip {
    grid-template-columns: 1fr;
  }

  .lead-audit-card {
    min-height: 0;
    padding: 21px 18px;
  }

  .lead-trust-strip > div {
    min-height: 72px;
    border-right: 0 !important;
    border-bottom: 1px solid #dfdfea;
  }

  .lead-trust-strip > div:last-child {
    border-bottom: 0;
  }

  .form-progress {
    margin-top: -2px;
  }

  .form-group-label {
    margin-top: 10px;
  }

  .footer-lead-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 48px;
    padding: 26px 22px;
  }

  .footer-lead-cta .button {
    width: 100%;
  }

  .whatsapp-button {
    right: 12px;
    bottom: 12px;
    width: auto;
    min-width: 170px;
    height: 50px;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 14px 0 11px;
    font-size: 0.71rem;
  }

  .whatsapp-button span {
    display: inline;
  }

  .whatsapp-button svg {
    width: 24px;
  }
}

/* Thank-you page */
.thank-you-page {
  background: #f5f6fa;
}

.thank-you-main {
  min-height: 100vh;
}

.thank-you-hero {
  position: relative;
  padding: 128px 0 95px;
  background:
    radial-gradient(circle at 10% 16%, rgba(91, 76, 240, 0.11), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(47, 183, 211, 0.09), transparent 25%),
    linear-gradient(180deg, #fafaff, #f5f6fa);
  overflow: hidden;
}

.thank-you-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(#c9c9e5 1px, transparent 1px), linear-gradient(90deg, #c9c9e5 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}

.thank-you-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.thank-you-orb-one {
  top: 78px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(91, 76, 240, 0.05);
}

.thank-you-orb-two {
  bottom: 50px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(47, 183, 211, 0.08), transparent 67%);
}

.thank-you-card {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-inline: auto;
  padding: 58px 64px 45px;
  border: 1px solid #dfdfea;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(91, 76, 240, 0.06), transparent 29%),
    #fff;
  box-shadow: 0 30px 80px rgba(38, 31, 103, 0.13);
  text-align: center;
  overflow: hidden;
}

.thank-you-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 70px;
  left: 70px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(90deg, var(--primary), #9460f4, var(--cyan));
}

.thank-you-check {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  margin: 2px auto 22px;
  place-items: center;
  border: 1px solid #bfe7d9;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #20a779, #43c497);
  box-shadow: 0 16px 36px rgba(32, 167, 121, 0.24);
}

.thank-you-check::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(32, 167, 121, 0.14);
  border-radius: 29px;
}

.thank-you-check svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-kicker {
  display: block;
  margin-bottom: 10px;
  color: #18825f;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.thank-you-card > h1 {
  max-width: 720px;
  margin: 0 auto 17px;
  font-size: clamp(2.65rem, 5.1vw, 4.25rem);
  letter-spacing: -0.06em;
}

.thank-you-lead {
  max-width: 690px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.thank-you-divider {
  width: 100%;
  height: 1px;
  margin: 38px 0;
  background: linear-gradient(90deg, transparent, #dedee9 16%, #dedee9 84%, transparent);
}

.thank-you-next {
  text-align: left;
}

.thank-you-next .section-kicker {
  display: flex;
  justify-content: center;
  margin-bottom: 7px;
}

.thank-you-next h2 {
  margin-bottom: 28px;
  font-size: 2rem;
  text-align: center;
}

.thank-you-next ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thank-you-next li {
  min-height: 195px;
  padding: 23px;
  border: 1px solid #e4e4ed;
  border-radius: 16px;
  background: #fafafd;
}

.thank-you-next li > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: #eceaff;
  font-size: 0.65rem;
  font-weight: 850;
}

.thank-you-next strong {
  display: block;
  margin-bottom: 7px;
  color: #36384c;
  font-size: 0.9rem;
}

.thank-you-next p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button-whatsapp {
  color: #fff;
  background: #20ad68;
  box-shadow: 0 13px 28px rgba(20, 127, 77, 0.23);
}

.button-whatsapp:hover {
  background: #198f57;
  box-shadow: 0 17px 34px rgba(20, 127, 77, 0.29);
}

.button-whatsapp svg {
  width: 23px;
  fill: currentColor;
  stroke: none;
}

.button-whatsapp:hover svg {
  transform: none;
}

.thank-you-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.thank-you-trust > div {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
}

.thank-you-trust > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.thank-you-trust span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #16815f;
  background: #e3f7f0;
  font-size: 0.68rem;
  font-weight: 900;
}

.thank-you-trust strong {
  color: #5a5d70;
  font-size: 0.72rem;
  line-height: 1.35;
}

@media (max-width: 920px) {
  .thank-you-card {
    padding: 52px 38px 40px;
  }

  .thank-you-next ol {
    grid-template-columns: 1fr;
  }

  .thank-you-next li {
    display: grid;
    min-height: 0;
    grid-template-columns: auto 1fr;
    gap: 15px;
  }

  .thank-you-next li > span {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .thank-you-hero {
    padding: 102px 0 65px;
  }

  .thank-you-card {
    padding: 43px 20px 30px;
    border-radius: 21px;
  }

  .thank-you-check {
    width: 68px;
    height: 68px;
    border-radius: 21px;
  }

  .thank-you-card > h1 {
    font-size: 2.55rem;
  }

  .thank-you-lead {
    font-size: 0.95rem;
  }

  .thank-you-divider {
    margin: 31px 0;
  }

  .thank-you-next h2 {
    font-size: 1.85rem;
  }

  .thank-you-next li {
    padding: 20px 17px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-trust {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .thank-you-trust > div {
    min-height: 57px;
    justify-content: flex-start;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .thank-you-trust > div:last-child {
    border-bottom: 0;
  }
}
