:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --text: #101828;
  --text-muted: #667085;
  --line: #d0d7e2;
  --line-strong: #b8c2d3;
  --brand: #0067ff;
  --brand-strong: #0053d6;
  --brand-soft: #eaf2ff;
  --shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
}

.brand-wordmark {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.065em;
  line-height: 1;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: inline-flex;
  gap: 20px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-strong);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.button {
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid rgba(0, 83, 214, 0.3);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 103, 255, 0.22);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    background 200ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(0, 103, 255, 0.16),
    0 16px 34px rgba(0, 103, 255, 0.24);
}

.button-compact {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(208, 215, 226, 0.95);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.button-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  background: #fffdf9;
  border-color: rgba(152, 162, 179, 0.95);
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.12);
}

.button-secondary:active {
  box-shadow: 0 8px 16px rgba(16, 24, 40, 0.08);
}

.button-primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: #fff;
}

.button-primary:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(180deg, #005ef0, #004fd3);
  border-color: rgba(0, 83, 214, 0.42);
  box-shadow: 0 22px 42px rgba(0, 103, 255, 0.34);
}

.button-primary:active {
  box-shadow: 0 10px 18px rgba(0, 103, 255, 0.22);
}

.button-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button-icon {
  flex: 0 0 auto;
  display: inline-block;
  transition: transform 200ms ease;
}

.button-with-icon:hover .button-icon,
.button-with-icon:focus-visible .button-icon {
  transform: translateX(2px) translateY(-1px);
}

.calendar-icon {
  position: relative;
  width: 17px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  box-sizing: border-box;
}

.calendar-icon::before,
.calendar-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.calendar-icon::before {
  left: 2px;
}

.calendar-icon::after {
  right: 2px;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(1.95rem, 4.1vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  max-width: 700px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.95rem, 4.5vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.lead,
.section-copy p {
  color: var(--text-muted);
  line-height: 1.66;
  font-size: 1.05rem;
}

.hero {
  padding-top: 70px;
  border-bottom: 1px solid #e5e7eb;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  gap: 52px;
  align-items: start;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-primary-button {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1rem;
}

.hero-secondary-button {
  min-height: 58px;
  padding: 0 26px;
  font-size: 1rem;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.media-placeholder {
  margin: 0;
  border: 1px dashed #c8d7f5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f9fbff, #f2f6ff);
  color: #334155;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.media-placeholder figcaption {
  font-size: 0.97rem;
  font-weight: 700;
  max-width: 90%;
}

.media-video-frame {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #edf3ff, #e8eef8);
}

.media-photo-frame {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-style: solid;
  aspect-ratio: 4 / 3;
  max-height: 520px;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.product-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: transparent;
  opacity: 0;
  transition: opacity 720ms ease;
  will-change: opacity;
}

.product-video.is-active {
  opacity: 1;
}

.product-video-mobile {
  display: none;
}

.video-play-button {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: none;
  transform: translateX(-50%);
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 103, 255, 0.24);
  cursor: pointer;
}

.media-video-frame.needs-user-play .video-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.media-large {
  min-height: 360px;
}

.media-desktop {
  min-height: 320px;
}

.media-sandbox {
  min-height: 330px;
}

.demo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.18);
}

.demo-frame-desktop {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 520px;
  max-height: 72vh;
}

.demo-frame-inner {
  width: 100%;
  height: 100%;
}

.demo-frame-inner-desktop {
  display: block;
  min-width: 1200px;
  transform-origin: top left;
}

.demo-frame-desktop > .demo-frame-inner-desktop {
  width: 1200px;
  height: 100%;
}

.demo-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f8fafc;
}

.demo-iframe-desktop {
  width: 1200px;
  height: 750px;
  min-height: 750px;
}

.demo-iframe-mobile {
  min-height: 100%;
  height: 100%;
}

.media-lifestyle {
  min-height: 400px;
}

.mobile-showcase {
  width: min(100%, 540px);
  margin: 0;
  display: block;
  margin-inline: auto;
  justify-self: center;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  justify-items: center;
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 206px;
  padding: 0;
  border-radius: 30px;
  background: #ffffff;
  border: 0;
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    0 4px 10px rgba(15, 23, 42, 0.05);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  border: 1.6px solid rgba(9, 12, 18, 0.96);
  pointer-events: none;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
  pointer-events: none;
}

.phone-screen {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
}

.phone-image {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
}

.counter-free-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.counter-free {
  margin: 0;
  color: #344054;
  font-weight: 700;
}

.counter-free strong {
  color: var(--text);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-right: 6px;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
}

.split-block + .split-block {
  margin-top: 58px;
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

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

.section-demo h2 {
  margin-bottom: 38px;
  text-align: center;
}

.section-demo .shell {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.compare-title {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.35rem, 5.1vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.compare-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
  justify-items: center;
  text-align: center;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  width: max-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.compare-badge-muted {
  background: #e9e7eb;
  color: #5f6471;
  border: 1px solid #d7d5da;
}

.compare-badge-accent {
  background: var(--brand-soft);
  color: var(--brand-strong);
  border: 1px solid rgba(0, 103, 255, 0.16);
}

.compare-card-old {
  background: linear-gradient(180deg, #f8fafc 0%, #f2f5f8 100%);
  border-color: #dde4ed;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  transform: translateY(24px) scale(0.96);
  transform-origin: right center;
  opacity: 0.96;
}

.compare-card-old h3,
.compare-card-old .compare-text,
.compare-card-old .compare-list {
  color: #475467;
}

.compare-card-klarogo {
  z-index: 1;
  padding: 34px 34px 30px;
  border-color: rgba(0, 103, 255, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 30px 64px rgba(0, 103, 255, 0.2), 0 16px 34px rgba(15, 23, 42, 0.1);
  transform: translateY(-10px) scale(1.015);
}

.compare-card-klarogo::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 103, 255, 0.14), 0 0 42px rgba(59, 130, 246, 0.18);
}

.compare-card h3 {
  margin: 0;
  font-size: 1.95rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.compare-text {
  margin: 0;
  color: #475467;
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.compare-list {
  margin: 0;
  padding-left: 0;
  color: #334155;
  line-height: 1.8;
  list-style: none;
  display: grid;
  gap: 10px;
  justify-self: center;
  width: min(100%, 30rem);
  text-align: left;
}

.compare-list li {
  position: relative;
  padding-left: 28px;
}

.compare-list-old {
  gap: 12px;
  color: #5b6472;
}

.compare-list-old li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  top: 0;
  color: #98a2b3;
  font-weight: 700;
}

.compare-list-positive {
  gap: 11px;
  width: max-content;
  max-width: 100%;
  justify-self: center;
}

.compare-list-positive li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.compare-card-klarogo .compare-list-positive {
  text-align: left;
}

.compare-button {
  width: min(100%, 280px);
  min-height: 54px;
  margin-top: 8px;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 16px 30px rgba(0, 103, 255, 0.22);
  justify-self: center;
}

.pricing-button {
  justify-self: center;
}

.section-case {
  background: linear-gradient(
    to bottom,
    #ffffff 0,
    #ffffff 48px,
    #f9fafb 48px,
    #f9fafb 100%
  );
}

.section-case h2 {
  margin-bottom: 28px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.045em;
}

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

.case-card {
  position: relative;
  display: grid;
  gap: 30px;
  min-height: 100%;
  border: 1px solid #dde6f2;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 36px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.case-quote-mark {
  color: var(--brand);
  font-size: 6.4rem;
  line-height: 0.55;
  font-weight: 900;
  letter-spacing: -0.08em;
  margin-bottom: -4px;
}

.case-quote {
  margin: 0;
  color: #101828;
  font-size: 1.22rem;
  line-height: 1.82;
  letter-spacing: -0.02em;
  max-width: 31ch;
}

.case-person {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.case-person-meta {
  display: grid;
  gap: 4px;
}

.case-person-meta h3 {
  margin: 0;
  font-size: 1.03rem;
  letter-spacing: -0.02em;
}

.case-person-meta p {
  margin: 0;
  color: #667085;
  line-height: 1.5;
  font-weight: 700;
}

.section-contact {
  background: #f9fafb;
  padding-top: 104px;
  padding-bottom: 104px;
}

.section-contact .shell {
  max-width: 900px;
}

.section-final-cta {
  background: #f9fafb;
  padding-top: 40px;
  padding-bottom: 88px;
}

.final-cta-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.final-cta-wrap h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: var(--text);
}

.final-cta-button {
  margin-top: 2px;
  min-width: 200px;
}

.faq-list {
  display: grid;
  gap: 0;
  border-bottom: 1px solid rgba(208, 215, 226, 0.9);
  background: #f9fafb;
}

.faq-list details {
  border-bottom: 1px solid rgba(208, 215, 226, 0.9);
  background: #f9fafb;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px 6px 28px 4px;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.45;
  transition: color 160ms ease;
}

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

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-right: 1.5px solid #7b8798;
  border-bottom: 1.5px solid #7b8798;
  transform: rotate(45deg);
  transition: transform 160ms ease, border-color 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary:hover {
  color: var(--brand);
}

.faq-list summary:hover::after {
  border-color: var(--brand);
}

.faq-list p {
  margin: 0;
  max-width: 68ch;
  padding: 0 48px 28px 4px;
  color: #475467;
  font-size: 0.98rem;
  line-height: 1.9;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-copy-column {
  display: grid;
  gap: 32px;
  align-content: start;
  min-width: 0;
}

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

.faq-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.faq-copy p {
  margin: 0;
  max-width: 54ch;
}

.faq-copy p {
  margin-inline: auto;
}

.faq-inline {
  min-width: 0;
  padding-top: 10px;
}

.faq-inline .faq-list {
  max-width: 100%;
}

.site-footer {
  background: #0f2747;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 10px 28px;
  align-items: center;
  padding: 14px 0 10px;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 16px;
  justify-content: start;
  align-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.footer-links a,
.footer-contact-link {
  width: max-content;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #ffffff;
}

.footer-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
  align-content: center;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.78);
  flex: 0 0 auto;
}

.footer-linkedin-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.footer-linkedin-icon::before {
  content: "in";
  position: absolute;
  left: 0;
  bottom: -1px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: currentColor;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-block,
  .split-reverse,
  .demo-grid,
  .faq-grid,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 14px;
  }

  .footer-grid {
    gap: 14px;
    padding: 16px 0 14px;
    align-items: start;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .shell {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .section {
    padding: 68px 0;
  }

  .section-contact {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-final-cta {
    padding-top: 36px;
    padding-bottom: 72px;
  }

  .final-cta-wrap {
    gap: 12px;
  }

  .faq-list summary {
    padding: 22px 2px 22px 0;
    gap: 14px;
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .faq-list p {
    padding: 0 30px 22px 0;
    font-size: 0.95rem;
    line-height: 1.82;
  }

  .header-inner {
    min-height: auto;
    padding: 10px 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
  }

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

  .button-compact {
    padding: 0 14px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid > * {
    min-width: 0;
  }

  .section-case {
    background: linear-gradient(
      to bottom,
      #ffffff 0,
      #ffffff 42px,
      #f9fafb 42px,
      #f9fafb 100%
    );
  }

  .media-photo-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    max-height: none;
  }

  .hero-visual {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  .hero-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 52% center;
    transform: none;
  }

  h1 {
    font-size: clamp(1.95rem, 9.4vw, 3.15rem);
    letter-spacing: -0.05em;
    max-width: 100%;
  }

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

  .mobile-showcase {
    width: min(100%, 420px);
  }

  .media-video-frame {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .product-video-mobile {
    display: block;
  }

  .product-video-desktop {
    display: none;
  }

  .footer-links {
    justify-content: start;
  }

  .footer-meta {
    justify-content: start;
  }

  .phone-grid {
    gap: 18px;
  }

  .phone-frame {
    max-width: 184px;
    border-radius: 26px;
  }

  .phone-frame::after {
    border-radius: 22px;
  }

  .phone-screen {
    border-radius: 24px;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    width: 100%;
    display: grid;
    max-width: 620px;
    gap: 18px;
  }

  .compare-card-klarogo {
    transform: translateY(0) scale(1);
  }

  .compare-card-old {
    transform: scale(1);
    opacity: 1;
  }

  .compare-card,
  .compare-card-klarogo {
    padding: 26px 22px;
  }

  .compare-card h3 {
    font-size: 1.7rem;
  }

  .compare-title {
    max-width: 520px;
  }

  .contact-copy-column {
    gap: 24px;
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .button,
  .button:hover,
  .button:active,
  .button-secondary:hover,
  .button-primary:hover,
  .button-with-icon:hover .button-icon,
  .button-with-icon:focus-visible .button-icon {
    transform: none !important;
  }
}
