:root {
  --green: #159447;
  --green-dark: #0f7538;
  --navy: #071b33;
  --text: #243244;
  --muted: #5c6b7a;
  --border: #d9e2e8;
  --soft: #f6fbf8;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(7, 27, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

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

.page-shell {
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 24px 42px 14px;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(560px, 0.98fr) minmax(620px, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.left-panel {
  padding-right: 26px;
  border-right: 1px solid var(--border);
}

.right-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-width: 0;
}

.site-header {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 245px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.048em;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 650px;
  margin: 0 0 6px;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.42;
  color: #435164;
}

.starting-price {
  margin: 0 0 20px;
  color: var(--green);
  font-size: clamp(19px, 1.5vw, 26px);
  line-height: 1.15;
  font-weight: 800;
}

.file-review-note {
  display: block;
  max-width: 420px; /* was about 570px */
  margin: 0 auto;
  padding: 14px 20px; /* reduced */
  background: var(--soft);
  border: 1px solid #d7efe1;
  border-radius: 14px;
  text-align: center;
}

.file-review-note strong {
  display: block;
  color: var(--navy);
  font-size: 14px; /* was about 16px */
  margin-bottom: 3px;
}

.file-review-note span {
  display: block;
  color: var(--muted);
  font-size: 13px; /* was about 15px */
  line-height: 1.35;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 16px 0 22px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
}

.trust-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.trust-item img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
}

.trust-item strong {
  font-size: 13px;
  line-height: 1.2;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 18px;
}

.section-heading h2 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 18px 16px 18px;
  text-align: center;
  min-height: 220px;
}

.service-card.featured {
  border-color: var(--green);
  background: linear-gradient(180deg, #f7fffa 0%, #ffffff 72%);
}

.service-icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.service-card h3 {
  min-height: 48px;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.16;
  font-weight: 800;
}

.service-price {
  margin: 0 auto 12px;
  color: var(--green);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
}

.service-card p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.45;
}

.pricing-note {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.before-after-block h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.hero-visual {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px;
}

.quote-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px 26px 22px;
}

.quote-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 18px;
}

.quote-copy h2 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.form-placeholder {
  min-height: 330px;
  border: 2px dashed #b8e3cc;
  border-radius: 15px;
  background: #fbfdfc;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: var(--muted);
}

.form-placeholder strong,
.form-placeholder span {
  display: block;
}

.form-placeholder strong {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 20px;
}

.site-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1220px) {
  .landing-grid {
    grid-template-columns: 1fr;
  }

  .left-panel {
    padding-right: 0;
    border-right: 0;
  }

  .right-panel {
    gap: 24px;
  }

  .hero-copy h1 {
    max-width: 840px;
  }

  .hero-visual {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 20px 16px;
  }

  .site-logo {
    width: 215px;
    height: 74px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .trust-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 12px 0;
  }

  .trust-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-card {
    min-height: auto;
  }

  .quote-section {
    padding: 22px 16px;
  }
}
