:root {
  --ink: #281307;
  --ink-soft: #4d2a17;
  --orange: #f56408;
  --orange-dark: #d94e00;
  --amber: #ffad2f;
  --cream: #fff9f3;
  --paper: #ffffff;
  --line: #eadfd6;
  --muted: #6d625c;
  --blue: #244f79;
  --green: #1e8b66;
  --shadow: 0 28px 70px rgba(74, 34, 8, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(72, 39, 21, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  width: 130px;
  height: 72px;
}

.brand-crop,
.footer-logo-crop {
  display: block;
  overflow: hidden;
  background: var(--paper);
  mix-blend-mode: multiply;
}

.brand-crop {
  width: 130px;
  height: 72px;
}

.brand-crop img {
  display: block;
  width: 130px;
  max-width: none;
  transform: translate(0, -21px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #57483f;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a,
.text-link {
  transition: color 160ms ease;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.text-link {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 21px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
}

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

.button-small {
  min-height: 40px;
  padding-inline: 16px;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), #f98816);
  color: #fff;
  box-shadow: 0 12px 25px rgba(235, 86, 4, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: 0 15px 30px rgba(235, 86, 4, 0.28);
}

.button-secondary,
.button-outline {
  border-color: #d9ccc2;
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,250,245,0.94) 48%, rgba(255,246,236,0.9) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(112, 64, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 64, 32, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to right, #000 0%, transparent 68%);
}

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

.hero-glow-one {
  top: -180px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255, 150, 29, 0.14);
}

.hero-glow-two {
  bottom: -210px;
  left: 38%;
  width: 420px;
  height: 420px;
  background: rgba(43, 91, 133, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 665px;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 58px;
  padding-block: 64px 72px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(245, 100, 8, 0.1);
}

.hero h1 {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 29px;
  color: #665950;
  font-size: 11px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

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

.stage-accent {
  position: absolute;
  inset: 0 -80px 0 28%;
  border: 1px solid rgba(245, 100, 8, 0.17);
  background: linear-gradient(145deg, rgba(255, 173, 47, 0.18), rgba(255, 255, 255, 0.45));
  transform: skewY(-2deg);
}

.product-window {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 438px;
  grid-template-columns: 66px 1fr;
  overflow: hidden;
  border: 1px solid rgba(57, 27, 9, 0.12);
  border-radius: 9px;
  background: #f7f8fa;
  box-shadow: var(--shadow);
}

.window-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  padding: 19px 12px;
  background: #291408;
}

.mini-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.side-line {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.side-line.active {
  height: 28px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.1);
}

.side-line.short {
  width: 19px;
  margin-top: auto;
}

.window-main {
  min-width: 0;
  padding: 23px;
}

.window-topbar,
.card-heading,
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.window-topbar strong,
.card-heading strong,
.sessions-card > strong {
  display: block;
  margin-top: 3px;
  color: #281c16;
  font-size: 14px;
}

.tiny-label {
  color: #9b8f87;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: #f8dfc6;
  color: #853400;
  font-size: 9px;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 21px;
}

.metric-grid article,
.chart-card,
.sessions-card {
  border: 1px solid #e5e7ea;
  background: #fff;
}

.metric-grid article {
  padding: 13px;
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: #8a7f78;
  font-size: 8px;
}

.metric-grid strong {
  display: block;
  margin: 8px 0 5px;
  color: #231710;
  font-size: 21px;
}

.metric-grid .positive {
  color: var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9px;
  margin-top: 10px;
}

.chart-card,
.sessions-card {
  min-height: 211px;
  padding: 15px;
}

.period,
.live-pill {
  border: 1px solid #eadfd7;
  padding: 5px 7px;
  color: #83766e;
  font-size: 8px;
  font-weight: 700;
}

.bars {
  display: flex;
  height: 122px;
  align-items: flex-end;
  gap: 8px;
  margin-top: 19px;
  border-bottom: 1px solid #eee7e2;
  background: repeating-linear-gradient(to bottom, #f2eeeb 0, #f2eeeb 1px, transparent 1px, transparent 40px);
}

.bars i {
  width: 100%;
  height: var(--bar);
  background: #d9d5d1;
}

.bars i.highlight {
  background: linear-gradient(to top, var(--orange), var(--amber));
}

.session-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 9px;
  margin-top: 17px;
  border-top: 1px solid #eee7e2;
  padding-top: 13px;
}

.session-line .time {
  display: grid;
  height: 30px;
  place-items: center;
  background: #eaf0f7;
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
}

.session-line .time.orange {
  background: #fff0df;
  color: #b84500;
}

.session-line b,
.session-line small {
  display: block;
  font-size: 9px;
}

.session-line small {
  margin-top: 3px;
  color: #9a8d85;
}

.floating-note {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: 2px;
  display: grid;
  width: 244px;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(79, 42, 19, 0.13);
  border-radius: 6px;
  background: #fff;
  padding: 11px;
  box-shadow: 0 18px 40px rgba(57, 27, 9, 0.16);
}

.note-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: #eaf7f1;
  color: var(--green);
}

.note-icon svg {
  width: 17px;
  height: 17px;
}

.floating-note small,
.floating-note strong {
  display: block;
  font-size: 8px;
}

.floating-note small {
  color: #94877f;
}

.floating-note strong {
  margin-top: 2px;
  font-size: 10px;
}

.floating-note > b {
  color: var(--green);
  font-size: 11px;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.proof-grid p {
  margin: 0;
  border-right: 1px solid var(--line);
  padding: 24px 30px;
}

.proof-grid p:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 13px;
}

.proof-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: 96px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 42px;
}

.section-intro h2,
.control-copy h2,
.pricing-heading h2,
.final-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 49px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-intro > p,
.pricing-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.solution-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.solution-card {
  position: relative;
  min-height: 245px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 29px;
  transition: background 180ms ease, transform 180ms ease;
}

.solution-card:hover {
  z-index: 2;
  background: var(--cream);
  transform: translateY(-3px);
}

.solution-card.featured {
  background: var(--ink);
  color: #fff;
}

.solution-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: #fff1e3;
  color: var(--orange-dark);
}

.featured .solution-icon {
  background: var(--orange);
  color: #fff;
}

.solution-icon svg {
  width: 20px;
  height: 20px;
}

.solution-number {
  position: absolute;
  top: 31px;
  right: 28px;
  color: #c2b5ac;
  font-size: 10px;
  font-weight: 800;
}

.featured .solution-number {
  color: rgba(255,255,255,0.35);
}

.solution-card h3 {
  margin: 32px 0 9px;
  font-size: 18px;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.featured p {
  color: rgba(255,255,255,0.65);
}

.control-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0, rgba(245,100,8,0.16), transparent 28%),
    var(--ink);
  color: #fff;
}

.control-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 90px;
}

.section-kicker.light {
  color: var(--amber);
}

.control-copy > p {
  max-width: 530px;
  margin: 21px 0 0;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
  line-height: 1.8;
}

.control-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.control-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.13);
  padding: 17px 0;
}

.control-list li > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
}

.control-list strong,
.control-list small {
  display: block;
}

.control-list strong {
  font-size: 13px;
}

.control-list small {
  margin-top: 5px;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
}

.control-panel {
  border: 1px solid rgba(255,255,255,0.17);
  background: rgba(255,255,255,0.075);
  padding: 31px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}

.panel-heading small,
.panel-heading strong {
  display: block;
}

.panel-heading small {
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-heading strong {
  margin-top: 5px;
  font-size: 16px;
}

.live-pill {
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.68);
}

.live-pill i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #4bd5a3;
  box-shadow: 0 0 0 4px rgba(75,213,163,0.1);
}

.performance-score {
  display: grid;
  grid-template-columns: 138px 1fr;
  align-items: center;
  gap: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-top: 25px;
  padding-block: 27px;
}

.score-ring {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 87%, rgba(255,255,255,0.12) 87% 100%);
}

.score-ring::before {
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #3a2114;
  content: "";
}

.score-ring span {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 850;
}

.score-ring small {
  font-size: 13px;
}

.performance-score > div:last-child strong {
  font-size: 15px;
}

.performance-score p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  line-height: 1.6;
}

.progress-list {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

.progress-list span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.progress-list b,
.progress-list small {
  font-size: 10px;
}

.progress-list small {
  color: rgba(255,255,255,0.58);
}

.progress-list div > i {
  display: block;
  height: 5px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}

.progress-list em {
  display: block;
  height: 100%;
  background: linear-gradient(to right, var(--orange), var(--amber));
}

.pricing-section {
  background: #fffaf6;
}

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

.pricing-heading > p {
  margin-top: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 43px;
}

.pricing-grid-empty {
  display: block;
}

.plan-card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  padding: 29px;
}

.plan-card.recommended {
  border: 2px solid var(--orange);
  box-shadow: 0 24px 55px rgba(111, 48, 11, 0.11);
}

.recommended-label {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  padding: 7px 11px;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-code {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 12px 0 0;
  font-size: 23px;
}

.plan-description {
  min-height: 62px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.plan-price {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 23px 0 0;
  padding-block: 19px;
}

.plan-price strong {
  font-size: 31px;
  letter-spacing: -0.04em;
}

.plan-price span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

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

.plan-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #574a42;
  font-size: 11px;
}

.plan-card li svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.plan-card .button {
  width: 100%;
}

.guided-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border: 1px solid #e7d6c8;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.96), rgba(255,243,231,0.92)),
    #fff;
  padding: 37px 42px;
  box-shadow: 0 20px 50px rgba(87, 39, 10, 0.08);
}

.guided-offer h3 {
  margin: 11px 0 0;
  font-size: 25px;
}

.guided-offer p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.guided-offer .button {
  flex: 0 0 auto;
}

.final-cta {
  background: linear-gradient(112deg, var(--orange-dark), var(--orange) 55%, #f7941c);
  color: #fff;
}

.final-cta-inner {
  display: flex;
  min-height: 288px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  font-size: clamp(34px, 4vw, 47px);
}

.final-cta-inner > div:first-child > span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(75, 26, 0, 0.18);
}

.cta-login {
  font-size: 12px;
  font-weight: 750;
}

.cta-login span {
  margin-left: 5px;
}

.site-footer {
  border-top: 1px solid #e7ddd5;
  background: #fff;
}

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

.footer-logo-crop {
  width: 112px;
  height: 49px;
}

.footer-logo-crop img {
  display: block;
  width: 115px;
  max-width: none;
  transform: translate(-1px, -22px);
}

.footer-brand p {
  margin: 2px 0 0;
  color: #927d70;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-copy {
  text-align: center;
}

.footer-copy p,
.footer-copy small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.footer-copy small {
  margin-top: 6px;
  color: #a2948c;
}

.footer-login {
  justify-self: end;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }

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

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

  .hero-grid {
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .product-stage {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

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

  .control-grid {
    gap: 46px;
  }

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

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

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

  .site-header {
    position: relative;
  }

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

  .brand,
  .brand-crop {
    width: 105px;
    height: 59px;
  }

  .brand-crop img {
    width: 105px;
    transform: translate(0, -17px);
  }

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

  .button-small {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .hero-grid {
    min-height: 0;
    gap: 38px;
    padding-block: 48px 54px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-lead {
    font-size: 15px;
  }

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

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

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .product-stage {
    padding-inline: 0;
  }

  .stage-accent {
    right: -30px;
  }

  .product-window {
    min-height: 360px;
    grid-template-columns: 45px 1fr;
  }

  .window-sidebar {
    padding-inline: 7px;
  }

  .side-line {
    width: 20px;
  }

  .window-main {
    padding: 15px;
  }

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

  .metric-grid article:last-child {
    display: none;
  }

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

  .sessions-card {
    display: none;
  }

  .floating-note {
    right: -5px;
  }

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

  .proof-grid p,
  .proof-grid p:first-child {
    border-left: 1px solid var(--line);
  }

  .section {
    padding-block: 70px;
  }

  .solution-card {
    min-height: 215px;
  }

  .performance-score {
    grid-template-columns: 104px 1fr;
  }

  .score-ring {
    width: 96px;
    height: 96px;
  }

  .score-ring::before {
    width: 74px;
    height: 74px;
  }

  .guided-offer,
  .final-cta-inner,
  .final-cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .guided-offer {
    padding: 28px;
  }

  .guided-offer .button {
    width: 100%;
  }

  .final-cta-inner {
    min-height: 0;
    padding-block: 63px;
  }

  .final-cta-actions {
    width: 100%;
    gap: 18px;
  }

  .button-light {
    width: 100%;
  }

  .footer-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 32px;
    text-align: center;
  }

  .footer-logo-crop {
    margin-inline: auto;
  }

  .footer-login {
    justify-self: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
