/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #173a43;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.75), transparent 20%),
    linear-gradient(180deg, #f8ffff 0%, #eefbfe 28%, #e3f6fa 60%, #d9f0f5 100%);
}

/* CONTAINER */

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}
.site-header .container {
  width: min(1380px, 96%);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(178, 221, 229, 0.65);
  box-shadow: 0 8px 24px rgba(20, 79, 91, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 0px;
}

.logo img {
  height: 60px;
}

/* NAV */

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(113, 204, 219, 0.45);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(239, 253, 255, 0.96) 0%, rgba(219, 246, 251, 0.92) 100%);
  text-decoration: none;
  color: #2e5d67;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.main-nav a:hover {
  color: #0f94aa;
  border-color: rgba(43, 192, 216, 0.72);
  background: linear-gradient(180deg, #e7fbfe 0%, #d1f2f8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 10px 20px rgba(24, 130, 147, 0.10);
  transform: translateY(-1px);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  transition:
  transform 0.28s ease,
  box-shadow 0.28s ease,
  border-color 0.28s ease,
  background-color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-header {
  min-width: 200px;
  padding: 16px 26px;
  background: linear-gradient(135deg, #18a9bf 0%, #087f98 100%);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 12px 24px rgba(8, 127, 152, 0.18);
  margin-left: auto;
}

.btn-header:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.34),
    0 16px 28px rgba(8, 127, 152, 0.24);
}

.btn-primary,
.btn-big {
  padding: 16px 34px;
  background: linear-gradient(135deg, #2bc0d8 0%, #1b97d8 100%);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(28, 146, 185, 0.22);
}

.btn-primary:hover,
.btn-big:hover {
  box-shadow: 0 18px 36px rgba(28, 146, 185, 0.28);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 128px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.92), transparent 38%),
    linear-gradient(180deg, rgba(244, 253, 255, 0.96) 0%, rgba(226, 246, 250, 0.96) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  width: min(1300px, 96vw);
  height: 380px;
  background:
    radial-gradient(circle at 50% 0%, rgba(164, 223, 234, 0.34), rgba(164, 223, 234, 0.10) 65%, transparent 85%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.00) 22%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #0e4450;
}

.h1-mobile-break {
  display: none;
}

.hero-text {
  max-width: 860px;
  margin: 0 auto 34px auto;
  font-size: 20px;
  color: #4d7380;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-small {
  margin-top: 14px;
  font-size: 15px;
  color: #6b8a94;
}

.hero-mail-note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b8a94;
  max-width: 560px;
  text-align: center;
}

/* SECTIONS */

section {
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #0f4450;
}

.section-subtext {
  color: #138a9c;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

/* BENEFITS */

.benefits {
  padding: 52px 0 84px 0;
  background:
    linear-gradient(180deg, #d9eff4 0%, #d7edf3 100%);
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,0.42), transparent 18%),
    radial-gradient(circle at 92% 24%, rgba(255,255,255,0.28), transparent 18%);
  pointer-events: none;
}

.benefits .container {
  position: relative;
  z-index: 2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 34px;
}

.benefit-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(249,253,254,0.96) 100%);
  border: 1px solid rgba(201, 230, 236, 0.95);
  box-shadow:
    0 18px 40px rgba(20, 79, 91, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transition:
  transform 0.25s ease,
  box-shadow 0.25s ease,
  background-color 0.25s ease,
  color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: #bfe6ee;
  box-shadow:
    0 24px 44px rgba(16, 92, 108, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.98);
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(246,252,253,0.98) 100%);
}

.benefit-label {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 22px;
}

.benefit-card h3 {
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 18px;
  color: #103f49;
}

.benefit-main {
  font-size: 17px;
  color: #567983;
}

.benefit-note-box {
  margin-top: 28px;
}

.benefit-note {
  display: inline-block;
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #e7f6f1 0%, #dcefe9 100%);
  color: #2e7c67;
  font-size: 16px;
  line-height: 1.45;
}

.benefits-extra {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.extra-pill {
  padding: 14px 22px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(241, 251, 253, 0.86) 0%, rgba(229, 246, 249, 0.88) 100%);
  border: 1px solid rgba(203, 232, 238, 0.92);
  color: #4f7480;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(17, 93, 107, 0.04);
}

/* PROCESS */

.process-section {
  padding: 84px 0 86px 0;
  background:
    linear-gradient(180deg, #dff2f6 0%, #d7edf3 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 8%, rgba(255,255,255,0.26), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(255,255,255,0.18), transparent 20%);
  pointer-events: none;
}

.process-section .container {
  position: relative;
  z-index: 2;
}

.process-box {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 20px;
  padding-left: 28px;
}

.step {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(248,253,254,0.62) 100%);
  border: 1px solid rgba(199, 229, 236, 0.72);
  border-radius: 22px;
  padding: 26px 28px 26px 34px;
  box-shadow: 0 14px 30px rgba(20, 79, 91, 0.035);
  backdrop-filter: blur(4px);
}

.step::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1fb7d3;
  box-shadow:
    0 0 0 7px rgba(31, 183, 211, 0.13),
    0 8px 18px rgba(20, 79, 91, 0.10);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  z-index: 1;
  width: 2px;
  height: calc(100% + 20px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(31, 183, 211, 0.24), rgba(46, 124, 103, 0.12));
}

.step-number {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1499ad;
}

.step h3 {
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 10px;
  color: #103f49;
}

.step p {
  font-size: 17px;
  line-height: 1.7;
  color: #537781;
}

.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-showcase {
  position: relative;
  width: min(440px, 100%);
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.process-phone {
  position: relative;
  z-index: 2;
  width: 218px;
  margin-left: 18px;
  filter: drop-shadow(0 24px 44px rgba(15, 75, 88, 0.14));
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.process-dragon {
  position: absolute;
  z-index: 3;
  left: 214px;
  bottom: 24px;
  width: 182px;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(15, 75, 88, 0.12));
}

/* PRIVACY */

.privacy-section {
  padding: 90px 0;
  text-align: center;
  background:
    linear-gradient(180deg, #d7edf3 0%, #d6edf2 100%);
}

.privacy-content {
  max-width: 860px;
}

.privacy-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.16;
  margin-bottom: 18px;
  color: #103f49;
}

.privacy-content p {
  font-size: 18px;
  color: #5a7b85;
}

/* SUMMARY */

.summary-section {
  padding: 90px 0 100px 0;
  background:
    linear-gradient(180deg, #d6edf2 0%, #d9eff4 100%);
}

.summary-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 34px;
  color: #103f49;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.summary-card {
  padding: 34px 32px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,252,253,0.97) 100%);
  border: 1px solid rgba(202, 230, 236, 0.94);
  box-shadow: 0 16px 34px rgba(20, 79, 91, 0.05);
}

.summary-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #103f49;
}

.summary-card p {
  font-size: 17px;
  color: #537781;
}

.summary-card-wide {
  grid-column: span 2;
}

/* FINAL CTA */

.final-cta {
  padding: 82px 0 92px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.42), transparent 32%),
    linear-gradient(180deg, #d9eff4 0%, #dbf1f5 100%);
}

.final-cta-inner {
  max-width: 860px;
}

.final-cta-inner h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #103f49;
}

.final-cta-inner > h2 {
  display: none;
}

.platform-reviews {
  text-align: left;
}

.platform-reviews h2 {
  text-align: center;
}

.reviews-intro {
  width: min(680px, 100%);
  margin: 0 auto 28px;
  color: #537781;
  font-size: 18px;
  text-align: center;
}

.final-text {
  font-size: 19px;
  color: #5b7d86;
  margin-bottom: 28px;
  text-align: center;
}

.platform-reviews-summary {
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(620px, 100%);
  margin: 0 auto 24px;
  padding: 22px 24px;
  border: 1px solid rgba(190, 226, 234, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(20, 79, 91, 0.05);
}

.rating-bars {
  display: grid;
  gap: 8px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #537781;
  font-size: 15px;
}

.rating-bar-row div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f4;
}

.rating-bar-row i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #f4b400;
  transition: width 0.35s ease;
}

.google-rating-side {
  min-width: 138px;
  text-align: center;
}

.review-score {
  font-size: 62px;
  line-height: 1;
  font-weight: 800;
  color: #103f49;
}

.review-stars {
  color: #f2b705;
  font-size: 20px;
  line-height: 1;
  margin: 8px 0 6px;
  letter-spacing: 0;
}

.review-count {
  color: #537781;
  font-size: 16px;
}

.review-note,
.review-empty {
  width: min(620px, 100%);
  margin: 0 auto 16px;
  color: #537781;
  font-size: 15px;
}

.review-note {
  display: none;
}

.platform-review-list {
  width: min(620px, 100%);
  margin: 0 auto;
  display: none;
  gap: 12px;
}

.platform-reviews-loaded .platform-reviews-summary {
  display: grid;
}

.platform-reviews-loaded .review-note {
  display: block;
}

.platform-reviews-loaded .platform-review-list {
  display: grid;
}

.reviews-empty-state {
  width: min(620px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr;
}

.reviews-empty-state div {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(190, 226, 234, 0.92);
  box-shadow: 0 14px 30px rgba(20, 79, 91, 0.045);
  text-align: center;
}

.reviews-empty-state strong,
.reviews-empty-state span {
  display: block;
}

.reviews-empty-state strong {
  margin-bottom: 6px;
  color: #103f49;
  font-size: 18px;
}

.reviews-empty-state span {
  color: #537781;
  font-size: 16px;
  line-height: 1.45;
}

.platform-review-item {
  border: 1px solid rgba(190, 226, 234, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(20, 79, 91, 0.04);
  overflow: hidden;
}

.platform-review-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  color: #103f49;
  font-weight: 750;
}

.platform-review-item summary::-webkit-details-marker {
  display: none;
}

.platform-review-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #e7f6f1;
  color: #2e7c67;
  font-weight: 800;
}

.platform-review-item[open] summary::after {
  content: "-";
}

.platform-review-item strong {
  color: #1499ad;
  white-space: nowrap;
}

.platform-review-item summary span {
  color: #f2b705;
}

.platform-review-item p {
  padding: 0 20px 18px;
  color: #537781;
  font-size: 16px;
}

/* FOOTER */

.site-footer {
  padding: 24px 0 30px;
  background: linear-gradient(180deg, #dbf1f5 0%, #e9f9fb 100%);
  border-top: 1px solid rgba(155, 218, 229, 0.7);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #2f6e78;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
}

.site-footer-copy {
  color: #0f5967;
  font-weight: 800;
}

.site-footer a {
  color: #108ea5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #0c6f82;
  text-decoration: underline;
}

.site-footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #1aa8b8;
  opacity: 0.72;
}

/* CHECK LEAD */

.check-lead-section {
  padding: 42px 0 34px;
  background: linear-gradient(180deg, #eefbfe 0%, #e2f6fa 100%);
}

.check-lead-box {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(244,253,255,0.82));
  border: 1px solid rgba(190, 226, 234, 0.9);
  box-shadow: 0 18px 40px rgba(20, 79, 91, 0.05);
  max-width: 1320px;
margin: 0 auto;
}

.check-lead-box h2 {
  font-size: 30px;
  color: #103f49;
  margin-bottom: 6px;
}

.check-lead-box > p {
  font-size: 17px;
  color: #537781;
  margin-bottom: 20px;
}

.find-lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: center;
}

.find-lead-form input {
  height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #b9dde6;
  background: rgba(255,255,255,0.9);
  color: #173a43;
  font-size: 15px;
}

.find-lead-form input:focus {
  outline: none;
  border-color: #2bc0d8;
  box-shadow: 0 0 0 3px rgba(43, 192, 216, 0.15);
}

.form-field-hint {
  grid-column: 1 / -1;
  margin: -4px 0 2px;
  color: #5f7f89;
  font-size: 14px;
}

.find-lead-form button {
  grid-column: span 2;
  justify-self: center;
  height: 52px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 26px;
  width: 280px;
}

#findLeadResult,
#findFirmaLeadResult {
  margin-top: 18px;
}

#leadSearchWrapper,
#firmaSearchWrapper {
  scroll-margin-top: 96px;
  border-radius: 18px;
  transition:
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    outline-color 0.22s ease;
}

.search-wrapper-focus {
  background: rgba(235, 255, 251, 0.92);
  outline: 3px solid rgba(43, 192, 216, 0.24);
  box-shadow: 0 18px 42px rgba(20, 151, 165, 0.13);
}

.firma-panel-link {
  margin-left: 10px;
}

.check-lead-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}

/* RESPONSIVE */

@media (max-width: 1150px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 92px;
  }

  .main-nav ul {
    gap: 8px;
  }

  .main-nav a {
    font-size: 16px;
    min-height: 40px;
    padding: 9px 12px;
  }

  .btn-header {
    min-width: auto;
    padding: 14px 20px;
  }

  .hero {
    padding: 54px 0 24px 0;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 18px;
  }

  .process-box {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-visual {
    order: -1;
  }

  .process-showcase {
    margin: 0 auto;
  }

  .process-steps {
    max-width: 760px;
    margin: 0 auto;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .summary-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .header-inner {
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .logo-img {
    height: 42px;
  }

  .hero {
    padding: 46px 0 18px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 17px;
  }

  .benefits {
    padding: 24px 0 72px 0;
  }

  .check-lead-split,
  .find-lead-form,
  .reviews-empty-state {
    grid-template-columns: 1fr;
  }

  .check-lead-box {
    padding: 22px;
    border-radius: 22px;
  }

  .client-side,
  .firma-side {
    padding: 24px 20px;
  }

  .find-lead-form button {
    grid-column: auto;
    width: 100%;
  }

  .process-showcase {
    min-height: 360px;
    justify-content: center;
  }

  .process-phone {
    width: 180px;
    margin-left: 0;
    transform: translateX(-34px);
  }

  .process-dragon {
    left: 132px;
    bottom: 20px;
    width: 132px;
    max-width: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefit-card {
    min-height: auto;
  }

  .process-section,
  .privacy-section,
  .summary-section,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .privacy-content h2,
  .summary-content h2,
  .final-cta-inner h2 {
    font-size: 34px;
  }

  .section-subtext,
  .privacy-content p,
  .final-text,
  .summary-card p,
  .step p,
  .benefit-main {
    font-size: 16px;
  }

  .summary-card,
  .step {
    padding: 24px 22px 24px 30px;
  }

  .process-steps {
    padding-left: 22px;
  }

  .step::before {
    left: -19px;
  }

  .step:not(:last-child)::after {
    left: -14px;
  }

  .extra-pill {
    width: 100%;
    text-align: center;
  }

  .platform-reviews-summary {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .platform-review-item summary {
    align-items: flex-start;
  }

}

.client-side,
.firma-side {
  padding: 28px;
  border-radius: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.client-side {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,253,255,0.92));
  border: 1px solid rgba(190, 226, 234, 0.9);
}

.firma-side {
  background: linear-gradient(135deg, #1fb7d3 0%, #1a97d7 100%);
  color: white;
  box-shadow: 0 18px 40px rgba(28, 146, 185, 0.18);
}

.client-side h3,
.firma-side h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.client-side p,
.firma-side p {
  font-size: 17px;
  line-height: 1.7;
}

.client-side .btn {
  margin-top: 20px;
  background: linear-gradient(135deg, #2bc0d8 0%, #1b97d8 100%);
  color: white;
  border: none;
  box-shadow: 0 14px 32px rgba(28, 146, 185, 0.22);

  align-self: flex-start;
}

.firma-side .btn {
  margin-top: 20px;

  align-self: flex-start;

  background: white;
  color: #1696c9;
  border: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);

  transition: none;
}

.client-side .btn:hover,
.firma-side .btn:hover {
  transform: none;
}

/* MOBILE LAYER */

@media (max-width: 720px) {
  html {
    scroll-padding-top: 20px;
  }

  body {
    overflow-x: hidden;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.94), transparent 22%),
      linear-gradient(180deg, #f7feff 0%, #eaf9fc 36%, #dff3f8 100%);
  }

  .container,
  .site-header .container {
    width: min(100% - 28px, 440px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .main-nav {
    display: none;
  }

  .logo-img {
    height: 50px;
  }

  .btn-header {
    display: none;
  }

  .hero {
    padding: 42px 0 44px 0;
  }

  .hero h1 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .h1-mobile-break {
    display: block;
  }

  .hero-text {
    max-width: 350px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .btn-primary {
    width: min(100%, 318px);
    min-height: 58px;
    padding: 14px 22px;
    border-radius: 16px;
  }

  .hero-small {
    margin-top: 16px;
    font-size: 15px;
  }

  .hero-mail-note {
    width: min(100%, 340px);
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .check-lead-section {
    padding: 40px 0 54px;
  }

  .check-lead-box {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
  }

  .check-lead-split,
  .find-lead-form,
  .reviews-empty-state {
    grid-template-columns: 1fr;
  }

  .client-side,
  .firma-side {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .client-side {
    border: 3px solid rgba(31, 183, 211, 0.58);
    box-shadow:
      0 14px 34px rgba(28, 146, 185, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .client-side h3,
  .firma-side h3 {
    font-size: 27px;
    line-height: 1.18;
  }

  .client-side p,
  .firma-side p {
    font-size: 17px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .client-side .btn,
  .firma-side .btn {
    width: 100%;
    min-height: 56px;
    align-self: stretch;
  }

  .find-lead-form {
    gap: 12px;
  }

  .find-lead-form input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    font-size: 16px;
  }

  .find-lead-form button {
    grid-column: auto;
    width: 100%;
    min-height: 56px;
  }

  .form-field-hint {
    margin: -2px 0 4px;
    font-size: 13px;
  }

  .firma-panel-link {
    margin-left: 0;
    margin-top: 10px;
  }

  .benefits {
    padding: 42px 0 54px 0;
  }

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

  .section-heading h2,
  .privacy-content h2,
  .summary-content h2,
  .final-cta-inner h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .section-subtext,
  .privacy-content p,
  .final-text,
  .summary-card p,
  .step p,
  .benefit-main {
    font-size: 16px;
    line-height: 1.55;
  }

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

  .benefit-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .benefit-label {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .benefit-card h3 {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .benefit-main {
    line-height: 1.45;
  }

  .benefit-note-box {
    margin-top: 16px;
    padding: 0;
  }

  .benefit-note {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.35;
  }

  .process-section,
  .privacy-section,
  .summary-section,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .process-box {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-visual {
    order: 0;
  }

  .process-steps {
    padding-left: 20px;
    gap: 24px;
  }

  .summary-card,
  .step {
    padding: 24px 20px 24px 28px;
    border-radius: 18px;
  }

  .step h3 {
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .step::before {
    left: -19px;
  }

  .step:not(:last-child)::after {
    left: -14px;
  }

  .process-showcase {
    width: min(340px, 100%);
    min-height: 350px;
    justify-content: center;
  }

  .process-phone {
    width: 176px;
    margin-left: 0;
    transform: translateX(-50px);
  }

  .process-dragon {
    left: 194px;
    bottom: 28px;
    width: 136px;
    max-width: none;
  }

  .extra-pill {
    width: 100%;
    text-align: center;
  }

  .platform-reviews {
    width: min(100%, 440px);
    margin: 0 auto;
  }

  .platform-reviews h2 {
    font-size: 36px;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .reviews-intro {
    font-size: 16px;
    line-height: 1.55;
  }

  .platform-reviews-summary {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px;
    border-radius: 18px;
  }

  .reviews-empty-state {
    gap: 12px;
  }

  .reviews-empty-state div {
    min-height: auto;
    padding: 20px;
    border-radius: 16px;
  }

  .platform-review-item summary {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .container,
  .site-header .container {
    width: min(100% - 22px, 408px);
  }

  .logo-img {
    height: 46px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section-heading h2,
  .privacy-content h2,
  .summary-content h2,
  .final-cta-inner h2,
  .platform-reviews h2 {
    font-size: 32px;
  }

  .check-lead-box {
    width: 100%;
    padding: 14px;
  }

  .client-side h3,
  .firma-side h3,
  .benefit-card h3,
  .step h3 {
    font-size: 24px;
  }

  .process-showcase {
    width: min(310px, 100%);
    min-height: 320px;
  }

  .process-phone {
    width: 158px;
    transform: translateX(-38px);
  }

  .process-dragon {
    left: 184px;
    bottom: 32px;
    width: 118px;
  }
}
