﻿:root {
  --bg: #eef0f5;
  --panel: #f8f9fc;
  --white: #ffffff;
  --ink: #0f152f;
  --muted: #63708c;
  --line: #dde2ef;
  --violet: #4a46c9;
  --violet-dark: #3e35b6;
  --blue: #5d91ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.page-shell {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 16px 16px 110px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #6e9cff, #4348ca);
}

.brand-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2f2f9c;
}

.preview-pill {
  border-radius: 999px;
  background: #e9edf8;
  color: #5d77c4;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  font-weight: 700;
}

.info-banner {
  border: 1px solid #d7dcef;
  border-radius: 14px;
  background: #edeff8;
  color: #3f4f83;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.info-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--violet);
  font-size: 0.8rem;
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 1px;
}

.hero-card {
  position: relative;
  margin-top: 18px;
  border-radius: 28px;
  border: 4px solid #f5f7ff;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(41, 54, 104, 0.11);
}

.hero-image {
  height: 205px;
  background-image: linear-gradient(90deg, rgba(236, 242, 247, 0.88), rgba(236, 242, 247, 0.45)),
    url("https://images.unsplash.com/photo-1576765608622-067973a79f53?auto=format&fit=crop&w=1000&q=80");
  background-position: center;
  background-size: cover;
}

.hero-chip {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e7ebf3;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(31, 46, 94, 0.12);
}

.chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f0ff;
  color: #4d7df5;
}

.chip-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chip-label {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6f7ca1;
  font-weight: 700;
}

.chip-value {
  margin: 2px 0 0;
  font-size: 1.12rem;
  font-weight: 600;
}

.chip-star {
  margin-left: auto;
  color: #4f7cff;
}

.headline-block {
  margin: 34px 4px 18px;
  text-align: center;
}

.headline-block h1 {
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

.headline-block h1 span {
  color: var(--violet);
}

.headline-block p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
  margin: 18px auto 0;
  max-width: 580px;
}

.feedback-btn {
  margin: 28px auto 12px;
  width: min(100%, 560px);
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--violet-dark));
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(64, 71, 190, 0.28);
}

.feedback-btn:hover {
  filter: brightness(1.03);
}

.micro-copy {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #adb6cd;
  font-weight: 600;
}

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

.trust-grid article {
  background: #f4f6fb;
  border: 1px solid #dfe3ee;
  border-radius: 16px;
  text-align: center;
  padding: 14px 8px;
}

.trust-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e8eefc;
}

.trust-grid h3 {
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #5d6d92;
}

.how-section {
  margin-top: 28px;
  background: #f7f8fb;
  border: 1px solid #e4e8f2;
  border-radius: 34px;
  padding: 26px 20px 20px;
}

.how-section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.1rem);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #3f6ff0;
  background: #e8edf9;
  border: 1px solid #d5dff5;
  font-size: 1.1rem;
}

.timeline-item h3 {
  margin: 1px 0 4px;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.4;
}

.sample-listings {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.sample-listings h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.sample-listings {
  display: grid;
  gap: 12px;
}

.listing-card {
  border: 1px solid #d5dff3;
  border-radius: 16px;
  background: linear-gradient(165deg, #ffffff, #f6f9ff);
  padding: 14px;
  box-shadow: 0 8px 18px rgba(38, 58, 134, 0.08);
}

.listing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.listing-card h4 {
  margin: 0;
  font-size: 1.02rem;
}

.listing-tag {
  border: 1px solid #d4dff7;
  background: #edf2ff;
  color: #3150b8;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-row {
  margin-top: 10px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
}

.price-main {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 800;
  color: #21327f;
}

.price-note {
  margin: 0;
  color: #4d63b4;
  font-size: 0.78rem;
  font-weight: 600;
  background: #edf2ff;
  border: 1px solid #d6e0fa;
  border-radius: 999px;
  padding: 4px 8px;
}

.listing-meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #d6dff4;
  display: grid;
  gap: 8px;
}

.listing-meta p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: #50618b;
  font-size: 0.88rem;
}

.listing-meta span {
  color: #60719b;
}

.listing-meta strong {
  color: #1f2e61;
  font-size: 0.9rem;
  text-align: right;
}

.site-footer {
  text-align: center;
  padding: 36px 10px;
  color: #8a95b2;
}

.site-footer h2 {
  color: #2f2f9c;
  margin: 0;
  font-size: 1.6rem;
}

.site-footer .quote {
  margin: 10px auto 0;
  max-width: 470px;
  font-style: italic;
  line-height: 1.45;
}

.site-footer .copy {
  margin-top: 20px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feedback-section {
  background: var(--panel);
  border: 1px solid #dce2f1;
  border-radius: 22px;
  padding: 18px;
}

.feedback-section h2 {
  margin-top: 0;
}

#zesevaForm {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#zesevaForm label {
  display: grid;
  gap: 5px;
  font-weight: 600;
  color: #35415f;
}

#zesevaForm input,
#zesevaForm textarea,
#zesevaForm select {
  font: inherit;
  color: inherit;
  border: 1px solid #cdd6ea;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

#zesevaForm input:focus,
#zesevaForm textarea:focus,
#zesevaForm select:focus {
  outline: 2px solid #bfd0ff;
  border-color: #7195f5;
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: center;
  font-weight: 500;
}

.submit-btn {
  border: 0;
  border-radius: 10px;
  background: #2f47c8;
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #263bae;
}

#form-status {
  min-height: 20px;
  margin: 0;
  color: #3255c9;
  font-size: 0.9rem;
}

.bottom-sticky {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: min(720px, calc(100% - 32px));
  border: 1px solid #d0d7ea;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.97);
  text-decoration: none;
  color: #251a9b;
  padding: 15px;
  text-align: center;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

@media (min-width: 760px) {
  .topbar {
    margin-top: 4px;
  }

  .info-banner {
    align-items: center;
  }

  .timeline-item h3 {
    font-size: 1.34rem;
  }

  .timeline-item p {
    font-size: 1.1rem;
  }
}

@media (max-width: 450px) {
  .brand-text {
    font-size: 1.5rem;
  }

  .preview-pill {
    font-size: 0.6rem;
    padding: 8px 10px;
  }

  .timeline-item h3 {
    font-size: 1.5rem;
  }

  .timeline-item p {
    font-size: 0.95rem;
  }

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



