*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #5B9BD5;
  --accent-hover: #4A87C5;
  --text: #111111;
  --muted: #666666;
  --border: #E5E5E5;
  --bg: #ffffff;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 60px;
}
.nav-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
}
.nav-phone-text { display: none; }
@media (min-width: 480px) { .nav-phone-text { display: inline; } }

/* LAYOUT */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-geo-circle {
  position: absolute;
  width: clamp(200px, 55vw, 380px);
  height: clamp(200px, 55vw, 380px);
  border: clamp(18px, 5vw, 32px) solid rgba(91,155,213,0.10);
  border-radius: 50%;
  top: -30%;
  right: -12%;
}
.hero-geo-dot {
  position: absolute;
  width: clamp(40px, 10vw, 70px);
  height: clamp(40px, 10vw, 70px);
  border-radius: 50%;
  background: rgba(91,155,213,0.07);
  bottom: 12%;
  left: -2%;
}
.hero-geo-fence {
  position: absolute;
  bottom: 0;
  right: clamp(-10px, 2vw, 10px);
  display: flex;
  align-items: flex-end;
  gap: clamp(5px, 1.5vw, 10px);
  padding-right: 8px;
}
.hero-geo-fence i {
  display: block;
  width: clamp(14px, 3.5vw, 22px);
  background: rgba(91,155,213,0.11);
  border-radius: 3px 3px 0 0;
  font-style: normal;
}
.hero-geo-rail {
  position: absolute;
  right: 0;
  height: clamp(5px, 1.2vw, 8px);
  background: rgba(91,155,213,0.10);
  border-radius: 2px;
}
.hero-geo-sq {
  position: absolute;
  width: clamp(22px, 5vw, 36px);
  height: clamp(22px, 5vw, 36px);
  border: 2.5px solid rgba(91,155,213,0.22);
  border-radius: 4px;
  transform: rotate(20deg);
}
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}

/* STATS */
.stats {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.stat {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
}

/* BUTTONS */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text); }

/* SECTION */
.section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.section h2 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.2;
}

/* BENEFITS LIST */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-arrow {
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.5;
  flex-shrink: 0;
}
.benefit-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}
.benefit-text span {
  font-size: 14px;
  color: var(--muted);
}

/* TAGS */
.tags-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text);
}
.tag-active {
  border-color: var(--accent);
  color: var(--accent);
  background: #EEF4FB;
}

/* REQUIREMENTS */
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 520px) { .req-grid { grid-template-columns: 1fr; } }
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.req-item:nth-child(odd) { padding-right: 20px; }
.req-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FORM */
.form-wrap {
  max-width: 480px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--accent);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
.btn-full { width: 100%; }

/* PHONE BLOCK */
.phone-block {
  margin-top: 36px;
  padding: 20px 24px;
  background: #f7f7f7;
  border-radius: 10px;
}
.phone-block-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}
.phone-block a {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.phone-block-hours {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* SUCCESS */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}
.form-success .success-icon {
  font-size: 44px;
  margin-bottom: 12px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--muted);
  font-size: 15px;
}

/* EARNINGS TABLE */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.rate-table tr {
  border-bottom: 1px solid var(--border);
}
.rate-table tr:last-child { border-bottom: none; }
.rate-table td {
  padding: 14px 0;
  font-size: 15px;
  vertical-align: middle;
}
.rate-table td:first-child { color: var(--text); font-weight: 600; }
.rate-table td:last-child {
  text-align: right;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  white-space: nowrap;
}
.rate-placeholder {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: #f7f7f7;
  border-radius: 6px;
  padding: 10px 16px;
  margin-top: 20px;
  border-left: 3px solid var(--border);
}

/* PAYMENT STEPS */
.pay-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pay-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.pay-step:last-child { border-bottom: none; }
.pay-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pay-step-text strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.pay-step-text span {
  font-size: 14px;
  color: var(--muted);
}

/* REVIEWS */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.review-card {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.review-card:last-child { border-bottom: none; }
.review-quote {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
  color: var(--text);
}
.review-quote::before { content: '«'; color: var(--accent); font-weight: 800; }
.review-quote::after  { content: '»'; color: var(--accent); font-weight: 800; }
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  flex-shrink: 0;
}
.review-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.review-meta span {
  font-size: 13px;
  color: var(--muted);
}

/* CHECKBOXES */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.check-item input[type="checkbox"] {
  display: none;
}
.check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.check-item input:checked ~ .check-box {
  background: var(--accent);
  border-color: var(--accent);
}
.check-item input:checked ~ .check-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.check-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* FIT INDICATOR */
.fit-indicator {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.fit-indicator.visible { display: flex; }
.fit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fit-text {
  font-size: 14px;
  font-weight: 700;
}
.fit-1 { background: #f5f5f5; }
.fit-1 .fit-dot { background: #aaa; }
.fit-1 .fit-text { color: #888; }
.fit-2 { background: #EEF4FB; }
.fit-2 .fit-dot { background: var(--accent); }
.fit-2 .fit-text { color: var(--accent); }
.fit-3 { background: #EDFAF3; }
.fit-3 .fit-dot { background: #2EAA6A; }
.fit-3 .fit-text { color: #1D8A54; }

/* FOOTER */
.footer {
  padding: 36px 0;
  background: #f7f7f7;
  margin-top: 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.footer-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
