:root {
  --ink: #0b1820;
  --text: #34454e;
  --muted: #67777f;

  --white: #ffffff;
  --soft: #f4f7f6;

  --line: #dce4e2;

  --green: #426b61;
  --green-dark: #274e46;

  --accent: #d26440;
  --accent-dark: #ab4b2e;

  --dark: #09151d;
  --dark-2: #122832;

  --radius: 17px;
  --radius-lg: 26px;

  --shadow:
    0 1px 2px rgba(11, 24, 32, 0.03),
    0 14px 42px rgba(11, 24, 32, 0.08);

  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 15px;
  top: 15px;
  transform: translateY(-180%);
  padding: 9px 13px;
  border-radius: 8px;
  background: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 226, 0.8);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      #102b35 0 48%,
      #47766a 48% 70%,
      #d46641 70% 100%
    );
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol > span {
  content: "";
  position: absolute;
  right: -5px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
}

.brand-symbol::before {
  top: 6px;
  width: 29px;
  height: 14px;
}

.brand-symbol::after {
  top: 16px;
  width: 25px;
  height: 12px;
}

.brand-symbol > span {
  top: 25px;
  width: 21px;
  height: 10px;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: .09em;
}

.brand-copy small {
  margin-top: -1px;
  color: var(--muted);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  padding: 82px 0 68px;
  background:
    radial-gradient(
      circle at 86% 20%,
      rgba(210,100,64,.13),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fbfcfb,
      #f5f8f7
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(45px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -.048em;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #273a43;
  font-size: 20px;
}

.hero-text {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 29px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.button-secondary {
  border-color: #cbd6d3;
  background: rgba(255,255,255,.8);
}

.provider-line {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  padding: 15px;
  border: 1px solid rgba(11,24,32,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}

.thermal-preview {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 19px;
  background:
    radial-gradient(
      circle at 73% 46%,
      #eca353 0 7%,
      #c64f3a 12%,
      transparent 25%
    ),
    linear-gradient(
      140deg,
      #172f3a,
      #2f6264 58%,
      #85543e
    );
}

.thermal-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.thermal-room {
  position: absolute;
  inset: 76px 55px 66px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
}

.thermal-window {
  position: absolute;
  width: 38%;
  height: 56%;
  right: 11%;
  top: 21%;
  border: 5px solid rgba(255,255,255,.35);
  background: #20505e;
}

.thermal-cold-zone {
  position: absolute;
  left: 42%;
  top: 6%;
  width: 12%;
  height: 88%;
  background: #18476c;
  filter: blur(4px);
}

.thermal-warm-zone {
  position: absolute;
  right: 2%;
  top: 14%;
  width: 25%;
  height: 72%;
  background:
    radial-gradient(
      ellipse,
      #f1ae55,
      #c84b38 50%,
      transparent 76%
    );
}

.thermal-tag {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border-radius: 7px;
  background: rgba(6,19,27,.74);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
}

.thermal-tag-top {
  left: 18px;
  top: 18px;
}

.thermal-result {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 9px;
  background: rgba(6,19,27,.73);
  color: rgba(255,255,255,.67);
  font-size: 11px;
}

.thermal-result strong {
  margin-left: 5px;
  color: #fff;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(210,100,64,.13),
      transparent 27%
    ),
    linear-gradient(
      150deg,
      var(--dark),
      var(--dark-2)
    );
}

.section-heading {
  max-width: 750px;
  margin-bottom: 36px;
}

.section-heading h2,
.pricing-copy h2,
.competence-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(33px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.036em;
}

.section-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.problem-card {
  min-height: 240px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.problem-card > span {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
}

.problem-card h3 {
  margin: 0 0 9px;
  font-size: 17px;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.example-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.example-images {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
  padding: 24px;
  background: #eef3f1;
}

.example-divider {
  text-align: center;
  color: var(--green);
  font-size: 25px;
}

.example-view {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 14px;
}

.normal-view {
  background: #d8ddda;
}

.thermal-view {
  background:
    radial-gradient(
      circle at 73% 48%,
      #efad50 0 9%,
      #c9513b 19%,
      transparent 33%
    ),
    linear-gradient(
      135deg,
      #193d49,
      #286274,
      #417360
    );
}

.view-label {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.85);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
}

.view-label-dark {
  background: rgba(5,18,27,.73);
  color: #fff;
}

.example-view small {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  color: var(--text);
}

.thermal-view small {
  background: rgba(5,18,27,.73);
  color: #fff;
}

.demo-window-normal,
.demo-window-thermal {
  position: absolute;
  inset: 55px 34px 52px;
  border: 5px solid rgba(255,255,255,.58);
}

.demo-window-normal {
  background: #94a4a3;
}

.demo-window-normal > div {
  position: absolute;
  inset: 18px;
  border: 5px solid #718181;
  background: #aab5b3;
}

.demo-window-thermal {
  overflow: hidden;
  background: #285965;
}

.cold-edge {
  position: absolute;
  left: -4px;
  top: 6%;
  width: 19%;
  height: 88%;
  background: #18416d;
  filter: blur(4px);
}

.warm-edge {
  position: absolute;
  right: -5px;
  top: 8%;
  width: 28%;
  height: 84%;
  background:
    radial-gradient(
      ellipse,
      #efb055,
      #c64d39 52%,
      transparent 76%
    );
}

.example-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.example-steps > div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.example-steps > div:last-child {
  border-right: 0;
}

.example-steps span {
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}

.example-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.process-grid li:first-child {
  padding-left: 0;
}

.process-grid li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-grid li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #c8d4d1;
  border-radius: 50%;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
}

.process-grid h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.eyebrow-light {
  color: #e4a085;
}

.pricing-copy > p {
  color: rgba(255,255,255,.64);
}

.neighbor-benefit {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.neighbor-benefit strong {
  font-size: 13px;
}

.neighbor-benefit p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
}

.price-card {
  padding: 33px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
}

.price-label {
  margin: 0;
  color: #e4a085;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0;
}

.price span {
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.price strong {
  font-size: 40px;
  letter-spacing: -.04em;
}

.price-card ul {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8fc1b3;
}

.documentation-option {
  margin-bottom: 22px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  background: rgba(4,17,25,.45);
}

.documentation-option strong {
  font-size: 12px;
}

.documentation-option p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 11px;
}

.price-card > small {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.43);
  font-size: 9px;
}

.competence-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 80px;
  align-items: start;
}

.competence-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.company-line {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.important-box {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--soft);
}

.important-box > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.important-box > div:last-child {
  border-bottom: 0;
}

.important-box strong {
  font-size: 13px;
}

.important-box p:not(.eyebrow) {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 65px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 108px;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.direct-contact a {
  display: block;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
}

.direct-contact span,
.direct-contact strong {
  display: block;
}

.direct-contact span {
  color: var(--muted);
  font-size: 9px;
}

.direct-contact strong {
  font-size: 14px;
}

.contact-form {
  position: relative;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  margin-bottom: 16px;
}

.field label,
.choice-group legend {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #ccd7d4;
  border-radius: 9px;
  outline: 0;
}

.field input {
  height: 45px;
  padding: 0 12px;
}

.field textarea {
  padding: 11px 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(66,107,97,.10);
}

.choice-group {
  padding: 0;
  margin: 8px 0 22px;
  border: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.check-card,
.radio-list label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.check-card:has(input:checked),
.radio-list label:has(input:checked) {
  border-color: #8eafa7;
  background: #f2f8f5;
}

.check-card input,
.radio-list input {
  margin-top: 3px;
  accent-color: var(--green);
}

.check-card strong,
.check-card small,
.radio-list strong,
.radio-list small {
  display: block;
}

.check-card strong,
.radio-list strong {
  font-size: 12px;
}

.check-card small,
.radio-list small {
  color: var(--muted);
  font-size: 10px;
}

.radio-list {
  display: grid;
  gap: 7px;
}

.form-privacy {
  color: var(--muted);
  font-size: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 17px;
}

.form-meta {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.form-notice {
  margin-bottom: 12px;
  padding: 13px 14px;
  border: 1px solid;
  border-radius: 9px;
  font-size: 12px;
}

.form-success {
  border-color: #badfce;
  background: #eaf7f1;
  color: #265d49;
}

.form-error {
  border-color: #efc0b5;
  background: #fff0ed;
  color: #873421;
}

.site-footer {
  padding: 50px 0 21px;
  background: #061118;
  color: rgba(255,255,255,.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1fr .8fr;
  gap: 38px;
}

.footer-grid strong {
  color: #fff;
  font-size: 11px;
}

.footer-brand {
  font-size: 16px !important;
  letter-spacing: .09em;
}

.footer-grid p {
  margin: 7px 0 0;
  font-size: 11px;
}

.footer-grid a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  font-size: 10px;
}

@media (max-width: 920px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 15px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 8px;
  }

  .hero-grid,
  .pricing-grid,
  .competence-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    max-width: 620px;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 51px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .thermal-preview {
    min-height: 300px;
  }

  .thermal-room {
    inset: 66px 28px 62px;
  }

  .problem-grid,
  .example-images,
  .example-steps,
  .process-grid,
  .form-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
  }

  .problem-card > span {
    margin-bottom: 27px;
  }

  .example-divider {
    transform: rotate(90deg);
  }

  .example-steps > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .example-steps > div:last-child {
    border-bottom: 0;
  }

  .process-grid {
    gap: 25px;
  }

  .process-grid li {
    padding: 0;
    border-right: 0;
  }

  .section {
    padding: 64px 0;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* =========================================================
   V4 – authentic, non-synthetic visual direction
   ========================================================= */

.method-hero {
  padding: 26px;
  border: 1px solid rgba(11, 24, 32, 0.09);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.method-hero-head {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.method-hero-head p {
  margin: 0 0 5px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
}

.method-hero-head strong {
  font-size: 18px;
  letter-spacing: -.015em;
}

.method-hero-flow {
  padding: 22px 0;
}

.method-hero-step {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 13px;
  align-items: start;
}

.method-hero-step > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ccd8d5;
  border-radius: 50%;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
}

.method-hero-step strong,
.method-hero-step small {
  display: block;
}

.method-hero-step strong {
  padding-top: 1px;
  font-size: 14px;
}

.method-hero-step small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.method-hero-line {
  width: 1px;
  height: 27px;
  margin: 5px 0 5px 16px;
  background: var(--line);
}

.method-hero-scale {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-hero-scale span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.method-hero-scale div {
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #184d72 0%,
      #357978 36%,
      #e1a24f 72%,
      #c94e38 100%
    );
}

.method-hero-equipment {
  padding-top: 19px;
}

.method-hero-equipment span,
.method-hero-equipment strong,
.method-hero-equipment small {
  display: block;
}

.method-hero-equipment span {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}

.method-hero-equipment strong {
  font-size: 13px;
}

.method-hero-equipment small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.education-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.education-top {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 11px;
  align-items: center;
}

.education-top > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #eef4f2;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.education-top strong {
  font-size: 15px;
  line-height: 1.3;
}

.education-problem {
  min-height: 54px;
  margin: 28px 0 0 !important;
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 650;
}

.education-divider {
  width: 42px;
  height: 2px;
  margin: 21px 0;
  background: var(--accent);
}

.education-card > p:not(.education-problem) {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.education-card > small {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.evidence-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  margin-top: 16px;
  padding: 23px 25px;
  border: 1px solid #d9dfd7;
  border-radius: 13px;
  background: #f7f6f1;
}

.evidence-note span,
.evidence-note strong {
  display: block;
}

.evidence-note span {
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}

.evidence-note strong {
  font-size: 14px;
  line-height: 1.4;
}

.evidence-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

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

  .education-card {
    min-height: 0;
  }

  .education-problem {
    min-height: 0;
  }

  .evidence-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================================================
   V4.1 polish
   ========================================================= */

.report-sample {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.report-example,
.report-includes {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.report-example {
  overflow: hidden;
}

.report-example-head {
  padding: 21px 23px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfa;
}

.report-example-head span,
.report-example-head strong {
  display: block;
}

.report-example-head span {
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}

.report-example-head strong {
  font-size: 16px;
}

.report-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 19px 23px;
  border-bottom: 1px solid var(--line);
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row > span {
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
}

.report-row p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
}

.report-includes {
  padding: 23px;
}

.report-includes ul {
  padding: 0;
  margin: 19px 0 24px;
  list-style: none;
}

.report-includes li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
}

.report-includes li:last-child {
  border-bottom: 0;
}

.report-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 850;
}

.report-note {
  padding: 15px;
  border-radius: 10px;
  background: var(--soft);
}

.report-note strong {
  font-size: 11px;
}

.report-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.future-photo-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.competence-note {
  margin: 21px 0 0;
  padding: 16px 17px;
  border-left: 3px solid var(--green);
  background: #f5f8f7;
}

.competence-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
}

.competence-note p {
  margin: 0 !important;
  color: var(--text) !important;
  font-size: 12px;
}

.field label small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

@media (min-width: 760px) {
  .radio-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .radio-list label {
    min-height: 76px;
  }
}

@media (max-width: 760px) {
  .report-sample {
    grid-template-columns: 1fr;
  }

  .report-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* =========================================================
   V4.2 final polish
   ========================================================= */

.important-intro {
  margin: -3px 0 8px !important;
  color: var(--muted) !important;
  font-size: 10px !important;
}

.education-card {
  min-height: 285px;
}

@media (max-width: 900px) {
  .education-card {
    min-height: 0;
  }
}
