:root {
  --bg: #f5f5f5;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --text: #0d1117;
  --muted: #61656d;
  --line: rgba(13, 17, 23, 0.08);
  --accent: #25c88f;
  --dark-accent: #0f232b;
  --shadow: 0 20px 60px rgba(14, 20, 28, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at top right, rgba(37, 200, 143, 0.08), transparent 25%), var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(13, 17, 23, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13, 17, 23, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 82%);
  pointer-events: none;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  z-index: -1;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 200, 143, 0.14), transparent 62%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.08s linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  backdrop-filter: blur(14px);
  background: rgba(245, 245, 245, 0.72);
  border-bottom: 1px solid rgba(13, 17, 23, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
}

.brand img,
.cta-logo,
.mini-logo img,
.mini-browser-body img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand img {
  width: 42px;
  height: 42px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  isolation: isolate;
}

.hero-copy {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 34px 26px 10px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
  z-index: -1;
}

.hero-orb-left {
  width: 300px;
  height: 300px;
  left: -40px;
  bottom: 70px;
  background: radial-gradient(circle, rgba(37, 200, 143, 0.16), rgba(37, 200, 143, 0.04) 48%, transparent 72%);
}

.hero-orb-right {
  width: 430px;
  height: 430px;
  right: -70px;
  top: 30px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(37, 200, 143, 0.08) 38%, transparent 74%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.eyebrow-pill {
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(14, 20, 28, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

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

.hero h1 {
  margin-top: 24px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.accent { color: var(--accent); }

.hero p {
  margin: 28px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: center;
  text-wrap: balance;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--text);
  color: white;
  box-shadow: 0 16px 30px rgba(13, 17, 23, 0.18);
}

.btn-hero-primary {
  min-height: 74px;
  padding: 0 18px 0 32px;
  gap: 18px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #09111c 0%, #0d1117 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 50px rgba(13, 17, 23, 0.2), 0 0 0 8px rgba(37, 200, 143, 0.09);
}

.btn-hero-primary:hover {
  box-shadow: 0 30px 58px rgba(13, 17, 23, 0.24), 0 0 0 10px rgba(37, 200, 143, 0.12);
}

.btn-arrow {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(16, 125, 92, 0.22), rgba(10, 102, 76, 0.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 18px rgba(0, 100, 72, 0.22);
  overflow: hidden;
}

.btn-arrow img {
  width: 34px;
  height: auto;
  display: block;
  transform: translateX(1px);
}

.btn-hero-primary:hover .btn-arrow img {
  transform: translateX(4px);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(13, 17, 23, 0.08);
  background: rgba(255,255,255,0.68);
}

.btn-hero-secondary {
  min-height: 62px;
  padding: 0 26px;
  box-shadow: 0 12px 28px rgba(14, 20, 28, 0.05);
}

.btn-hero-secondary:hover {
  border-color: rgba(37, 200, 143, 0.22);
  background: rgba(255,255,255,0.88);
}

.screen-mockup,
.floating-card,
.service-card,
.lead-panel,
.cta-box,
.mini-browser-card,
.lead-pill {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(13, 17, 23, 0.06);
  border-bottom: 1px solid rgba(13, 17, 23, 0.06);
  background: rgba(255,255,255,0.42);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 18px 0;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
  color: rgba(13,17,23,0.82);
}

.marquee-track span::after {
  content: '•';
  margin: 0 28px;
  color: rgba(37, 200, 143, 0.72);
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

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

#services .section-heading {
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 860px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  border-radius: 32px;
  padding: 32px;
  min-height: 290px;
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,200,143,0.12), transparent 68%);
  pointer-events: none;
}

.service-card::after {
  position: absolute;
  right: 24px;
  bottom: 14px;
  font-size: 5.5rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(13,17,23,0.04);
  pointer-events: none;
}

.service-card:nth-child(1)::after { content: '01'; }
.service-card:nth-child(2)::after { content: '02'; }
.service-card:nth-child(3)::after { content: '03'; }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(14, 20, 28, 0.12);
}

.service-number {
  font-size: .85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 18px;
}

.service-icon {
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(37, 200, 143, 0.10));
}

.service-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.service-note {
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #117050;
  letter-spacing: -0.02em;
}

.service-card p,
.cta-box p,
.lead-row,
.panel-top,
.lead-pill {
  color: var(--muted);
}

.service-card p {
  margin-top: 14px;
  line-height: 1.6;
  max-width: 320px;
  font-size: 1.02rem;
}

.pricing-section {
  padding-top: 48px;
}

.pricing-heading {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 44px;
}

.pricing-heading .eyebrow,
.pricing-heading h2 {
  justify-content: center;
}

.pricing-intro {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: auto -56px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,200,143,0.12), transparent 68%);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(14, 20, 28, 0.12);
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(37,200,143,0.16), rgba(255,255,255,0.86));
  border-color: rgba(37,200,143,0.26);
  box-shadow: 0 28px 65px rgba(14, 20, 28, 0.12), 0 0 0 8px rgba(37, 200, 143, 0.07);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 35, 43, 0.96);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .02em;
  z-index: 2;
}

.pricing-topline {
  min-height: 24px;
  margin-bottom: 14px;
  padding-right: 124px;
}

.pricing-kicker {
  display: inline-block;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--muted);
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.pricing-price {
  margin-top: 12px;
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: var(--text);
}

.pricing-card-featured .pricing-price {
  color: #117050;
}

.pricing-description {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
  min-height: 136px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
  min-height: 204px;
}

.pricing-features li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 600;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #117050;
  font-weight: 800;
}

.pricing-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  background: linear-gradient(180deg, #09111c 0%, #0d1117 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 34px rgba(13, 17, 23, 0.18);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(13, 17, 23, 0.2), 0 0 0 8px rgba(37, 200, 143, 0.09);
}

.lead-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1.15fr);
  align-items: center;
  gap: 16px;
}

.lead-panel {
  min-height: 380px;
  border-radius: 30px;
  padding: 28px;
  background: rgba(255,255,255,0.76);
}

.lead-panel-good {
  background: linear-gradient(180deg, rgba(37,200,143,0.10), rgba(255,255,255,0.82));
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.compare-tag {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
}

.lead-panel-bad .compare-tag {
  background: rgba(13,17,23,0.08);
  color: var(--text);
}

.lead-panel-good .compare-tag {
  background: rgba(37,200,143,0.16);
  color: #117050;
}

.lead-count {
  padding: 10px 14px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lead-count.zero {
  background: rgba(13,17,23,0.08);
  color: var(--text);
}

.lead-count.positive {
  background: rgba(15,35,43,0.96);
  color: white;
}

.lead-board {
  position: relative;
  min-height: 286px;
  border-radius: 26px;
  border: 1px solid rgba(13,17,23,0.06);
  overflow: hidden;
}

.muted-board {
  background: linear-gradient(180deg, rgba(15,35,43,0.98), rgba(15,35,43,0.92));
  padding: 26px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.bright-board {
  padding: 18px;
  background:
    linear-gradient(to right, rgba(13,17,23,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13,17,23,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(239,255,249,0.78));
  background-size: 34px 34px, 34px 34px, auto;
}

.lead-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.82);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.lead-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: white;
  font-size: 0.9rem;
  flex: 0 0 auto;
}

.lead-flow {
  position: relative;
  height: 100%;
  min-height: 160px;
}

.flow-arrow {
  position: absolute;
  inset: 50% 8px auto 8px;
  height: 4px;
  background: linear-gradient(90deg, rgba(37,200,143,0.04), rgba(37,200,143,0.92));
  transform: translateY(-50%);
  border-radius: 999px;
}

.flow-arrow::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--accent);
  border-right: 4px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.flow-dots,
.flow-dots::before,
.flow-dots::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(37,200,143,0.26);
  transform: translateY(-50%);
  animation: flowPulse 1.8s ease-in-out infinite;
}

.flow-dots { left: 18%; }
.flow-dots::before { left: 30px; animation-delay: .3s; }
.flow-dots::after { left: 60px; animation-delay: .6s; }

@keyframes flowPulse {
  0% { opacity: 0.15; transform: translateY(-50%) scale(0.9); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
  100% { opacity: 0.15; transform: translateY(-50%) scale(0.9); }
}

.mini-browser-card {
  width: min(100%, 330px);
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  overflow: hidden;
}

.mini-browser-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(13,17,23,0.06);
}

.mini-browser-body {
  padding: 20px;
}

.mini-browser-body img {
  width: 50px;
  height: 50px;
}

.mini-browser-copy {
  margin-top: 16px;
  font-size: 1.7rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  max-width: 190px;
}

.lead-pill {
  position: absolute;
  right: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  font-weight: 700;
  color: var(--text);
  animation: pillFloat 4.6s ease-in-out infinite;
}

.lead-pill-one { top: 28px; animation-delay: .1s; }
.lead-pill-two { top: 92px; animation-delay: .7s; }
.lead-pill-three { bottom: 72px; animation-delay: 1.1s; }
.lead-pill-four { bottom: 16px; right: 42px; animation-delay: 1.4s; }

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

.cta-section {
  padding-bottom: 120px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(37,200,143,0.08));
  border-radius: 34px;
  padding: 60px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  display: block;
}

.cta-box h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.cta-box p {
  max-width: 620px;
  margin: 18px auto 30px;
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.floating-get-started {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #09111c 0%, #0d1117 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 34px rgba(13, 17, 23, 0.20), 0 0 0 8px rgba(37, 200, 143, 0.08);
}

.floating-get-started__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(16, 125, 92, 0.22), rgba(10, 102, 76, 0.95));
}

@media (max-width: 1100px) {
  .hero {
    padding-top: 40px;
  }

  .service-grid,
  .pricing-grid,
  .lead-compare {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .pricing-card-featured {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .lead-flow {
    min-height: 80px;
  }

  .flow-arrow {
    inset: 50% 60px auto 60px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand span { display: none; }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 82px 0;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero-copy {
    padding: 14px 0 0;
  }

  .eyebrow-pill {
    padding: 10px 16px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

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

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }

  .btn-hero-primary {
    min-height: 66px;
    padding-left: 24px;
  }

  .hero-orb-left {
    width: 220px;
    height: 220px;
    left: -40px;
    bottom: 80px;
  }

  .hero-orb-right {
    width: 260px;
    height: 260px;
    right: -90px;
    top: 20px;
  }

  .section-heading h2,
  .pricing-heading h2,
  .cta-box h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .service-card,
  .pricing-card,
  .lead-panel,
  .cta-box {
    border-radius: 28px;
  }

  .service-card,
  .pricing-card {
    padding: 24px;
  }

  .pricing-section {
    padding-top: 24px;
  }

  .pricing-topline {
    margin-bottom: 12px;
    padding-right: 0;
  }

  .pricing-badge {
    top: 18px;
    right: 18px;
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .pricing-card-featured {
    padding-top: 72px;
  }

  .pricing-card h3 {
    font-size: 1.7rem;
    max-width: calc(100% - 116px);
  }

  .pricing-price {
    font-size: 1.9rem;
  }

  .pricing-description,
  .pricing-features {
    min-height: unset;
  }

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

  .lead-pill {
    font-size: 0.88rem;
  }

  .cta-box {
    padding: 46px 22px;
  }

  .floating-get-started {
    right: 14px;
    bottom: 14px;
    padding-left: 18px;
  }

  .floating-get-started__label {
    font-size: 0.95rem;
  }
}
