:root {
  --red: #e3132b;
  --red-dark: #bd0e22;
  --blue: #006197;
  --blue-deep: #082d42;
  --ink: #12212a;
  --muted: #63717a;
  --line: #dfe5e8;
  --surface: #f4f7f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 97, 151, 0.28);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 33, 42, 0.08);
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 76px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-mark {
  align-items: baseline;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  font-size: 24px;
  font-weight: 850;
  height: 46px;
  letter-spacing: -0.06em;
  padding: 7px 10px;
  position: relative;
}

.brand-mark::after {
  border: 1px solid rgba(8, 45, 66, 0.35);
  bottom: -6px;
  content: "";
  height: 28px;
  position: absolute;
  right: -7px;
  transform: rotate(4deg);
  width: 28px;
}

.brand-mark span {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.04em;
  margin-left: 3px;
}

.brand-caption {
  color: #52616a;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 28px;
}

.header-link {
  color: #42515a;
  font-size: 14px;
  font-weight: 650;
}

.button {
  align-items: center;
  background: var(--red);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 28px rgba(227, 19, 43, 0.2);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 22px;
}

.hero {
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f3f7f8 61%, #edf4f6 100%);
  display: grid;
  gap: clamp(48px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.74fr);
  min-height: 850px;
  overflow: hidden;
  padding: 132px clamp(24px, 7vw, 112px) 72px;
  position: relative;
}

.hero-glow {
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.hero-glow-one {
  background: rgba(227, 19, 43, 0.07);
  filter: blur(2px);
  height: 420px;
  right: -250px;
  top: 80px;
  width: 420px;
}

.hero-glow-two {
  border: 1px solid rgba(0, 97, 151, 0.12);
  bottom: -230px;
  height: 510px;
  left: -180px;
  width: 510px;
}

.hero-copy,
.wizard {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.13em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--red);
  display: inline-block;
  height: 3px;
  width: 28px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(42px, 4.25vw, 68px);
  font-weight: 770;
  letter-spacing: -0.045em;
  line-height: 1.045;
  margin-bottom: 22px;
  max-width: 700px;
}

.hero-journey {
  color: var(--blue-deep);
  font-size: clamp(20px, 1.6vw, 25px);
  font-weight: 720;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-lead {
  color: var(--red);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 720;
  margin-bottom: 16px;
}

.hero-explainer {
  color: #51616a;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 580px;
}

.assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
}

.assurances span {
  align-items: center;
  color: #34454f;
  display: flex;
  font-size: 14px;
  font-weight: 650;
  gap: 8px;
}

.assurances i {
  align-items: center;
  background: rgba(0, 97, 151, 0.1);
  border-radius: 50%;
  color: var(--blue);
  display: inline-flex;
  font-size: 11px;
  font-style: normal;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.wizard {
  background: var(--white);
  border: 1px solid rgba(8, 45, 66, 0.09);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(8, 45, 66, 0.12);
  min-height: 570px;
  padding: clamp(26px, 3.5vw, 46px);
}

.wizard::before {
  background: var(--red);
  border-radius: 12px 12px 0 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.wizard-progress {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.wizard-progress span {
  background: #dce3e7;
  border-radius: 999px;
  height: 5px;
  transition: all 220ms ease;
  width: 28px;
}

.wizard-progress span.is-active {
  background: var(--red);
  width: 46px;
}

.wizard-progress b {
  color: #7a8790;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-left: auto;
  text-transform: uppercase;
}

.wizard-panel {
  animation: panel-in 260ms ease both;
}

.wizard-panel[hidden] {
  display: none;
}

.wizard-dynamic {
  min-height: 455px;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.wizard h2 {
  font-size: clamp(27px, 2.2vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.wizard-hint {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 45px 1fr auto;
  min-height: 78px;
  padding: 12px 15px;
  text-align: left;
  transition: border 150ms ease, background 150ms ease, transform 150ms ease;
  width: 100%;
}

.choice:hover {
  background: #fffafb;
  border-color: rgba(227, 19, 43, 0.55);
  transform: translateX(3px);
}

.choice-icon {
  align-items: center;
  background: var(--surface);
  border-radius: 7px;
  display: flex;
  font-size: 22px;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.mark-icon {
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.choice-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.choice-copy strong {
  font-size: 16px;
}

.choice-copy small {
  color: #718089;
  font-size: 12px;
}

.choice-arrow {
  color: var(--red);
  font-size: 21px;
  font-weight: 700;
}

.wizard-note,
.privacy-note {
  color: #7a8790;
  font-size: 12px;
  margin: 17px 0 0;
  text-align: center;
}

.back-button,
.text-button {
  background: none;
  border: 0;
  color: var(--blue);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 0;
}

.back-button {
  margin-bottom: 17px;
}

.selection-chip {
  background: rgba(0, 97, 151, 0.08);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-bottom: 9px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.result-panel {
  text-align: center;
}

.result-icon {
  align-items: center;
  background: rgba(0, 97, 151, 0.1);
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  font-size: 25px;
  font-weight: 850;
  height: 64px;
  justify-content: center;
  margin: 4px auto 20px;
  width: 64px;
}

.recommendation {
  color: #51616a;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 420px;
}

.result-summary {
  background: var(--surface);
  border-radius: 8px;
  margin: 0 0 22px;
  padding: 8px 18px;
}

.result-summary div {
  align-items: center;
  border-bottom: 1px solid #dfe5e8;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.result-summary div:last-child {
  border-bottom: 0;
}

.result-summary dt {
  color: #7a8790;
  font-size: 12px;
  text-transform: uppercase;
}

.result-summary dd {
  font-size: 14px;
  font-weight: 750;
  margin: 0;
  text-transform: capitalize;
}

.result-button {
  width: 100%;
}

.result-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-back {
  display: block;
  text-align: left;
}

.contact-form {
  display: grid;
  gap: 13px;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
  text-align: left;
}

.contact-form > label:not(.privacy-check):not(.form-trap) {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  color: #34454f;
  font-size: 12px;
  font-weight: 750;
}

.contact-form label small {
  color: #849098;
  font-size: 11px;
  font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  background: var(--white);
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  min-height: 45px;
  padding: 9px 11px;
  width: 100%;
}

.contact-form textarea {
  min-height: 76px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 97, 151, 0.11);
  outline: 0;
}

.contact-message,
.privacy-check,
.contact-form .result-button,
.contact-form .privacy-note,
.form-error {
  grid-column: 1 / -1;
}

.privacy-check {
  align-items: flex-start;
  display: flex;
  gap: 9px;
  margin: 2px 0;
}

.privacy-check input {
  accent-color: var(--red);
  flex: 0 0 auto;
  height: 17px;
  margin: 2px 0 0;
  width: 17px;
}

.privacy-check span {
  color: #64727a !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.privacy-check a,
.form-error a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-trap {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 6px;
  color: #9f1239;
  font-size: 12px;
  margin: 0;
  padding: 9px 11px;
}

.success-panel {
  padding: 52px 0 20px;
}

.text-button {
  margin-top: 14px;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 7vw, 112px);
}

.trust-strip > div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 110px;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.trust-strip > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--blue-deep);
  font-size: 17px;
}

.trust-strip span {
  color: #78858d;
  font-size: 12px;
}

.section-shell {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: clamp(24px, 7vw, 112px);
  padding-right: clamp(24px, 7vw, 112px);
}

.philosophy {
  padding-bottom: 120px;
  padding-top: 120px;
}

.section-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 55px;
}

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

.principles article {
  border-top: 2px solid var(--blue-deep);
  padding: 28px 18px 10px 0;
}

.principle-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.principles h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 32px 0 12px;
  max-width: 310px;
}

.principles p {
  color: #687780;
  font-size: 14px;
  max-width: 330px;
}

.process {
  background: var(--blue-deep);
  color: var(--white);
  padding: 112px 0 120px;
}

.eyebrow-light {
  color: #83bdd8;
}

.process-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  margin-bottom: 56px;
}

.process-heading .eyebrow {
  grid-column: 1 / -1;
}

.process-heading h2 {
  margin-bottom: 0;
  max-width: 680px;
}

.process-heading > p:last-child {
  align-self: end;
  color: #a9bbc5;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 390px;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 235px;
  padding: 28px 24px 14px 0;
}

.process-list li + li {
  padding-left: 24px;
}

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

.process-number {
  color: #71b1cf;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-list h3 {
  font-size: 18px;
  margin: 76px 0 11px;
}

.process-list p {
  color: #a9bbc5;
  font-size: 13px;
  line-height: 1.55;
}

.closing-cta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  padding-top: 100px;
}

.closing-cta h2 {
  font-size: clamp(35px, 4vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.closing-cta > div > p:last-child {
  color: #65747d;
  font-size: 18px;
  margin: 0;
}

.closing-cta .button {
  flex: 0 0 auto;
  margin-left: 50px;
}

footer {
  align-items: center;
  background: #f1f4f5;
  color: #64727a;
  display: flex;
  font-size: 13px;
  gap: 28px;
  justify-content: space-between;
  min-height: 110px;
  padding: 20px clamp(24px, 7vw, 112px);
}

.legal-page {
  background: linear-gradient(135deg, #ffffff 0%, #f4f7f8 100%);
  min-height: 100vh;
}

.legal-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 82px;
  padding: 16px clamp(24px, 7vw, 112px);
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(8, 45, 66, 0.08);
  margin: 70px auto;
  max-width: 900px;
  padding: clamp(34px, 6vw, 74px);
}

.legal-content h1 {
  font-size: clamp(36px, 5vw, 57px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.legal-intro {
  color: #52616a;
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 52px;
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding: 28px 0 8px;
}

.legal-content h2 {
  color: var(--blue-deep);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.legal-content section p {
  color: #5d6c75;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content section a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-updated {
  color: #859199;
  font-size: 12px;
  margin: 35px 0 0;
}

.footer-brand .brand-mark {
  font-size: 18px;
  height: 36px;
  padding: 5px 8px;
}

.footer-brand .brand-mark span {
  font-size: 12px;
}

footer p {
  margin: 0 auto 0 0;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 1050px) {
  .hero {
    gap: 46px;
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .wizard {
    justify-self: stretch;
    min-height: auto;
    width: 100%;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-list li:nth-child(3) {
    border-right: 0;
  }

  .process-list li:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .legal-header {
    min-height: 72px;
    padding: 12px 18px;
  }

  .legal-header .header-link {
    display: block;
    font-size: 12px;
  }

  .legal-content {
    border-left: 0;
    border-right: 0;
    margin: 24px 0 0;
    padding: 36px 20px 52px;
  }

  .brand-caption,
  .header-link {
    display: none;
  }

  .brand-mark {
    font-size: 21px;
    height: 42px;
  }

  .button-small {
    min-height: 40px;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding: 115px 18px 48px;
  }

  .hero h1 {
    font-size: 41px;
  }

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

  .assurances {
    display: grid;
  }

  .wizard {
    border-radius: 9px;
    padding: 27px 18px 24px;
  }

  .choice {
    gap: 11px;
    grid-template-columns: 42px 1fr auto;
    padding: 11px;
  }

  .choice-icon {
    height: 42px;
    width: 42px;
  }

  .choice-copy small {
    line-height: 1.35;
  }

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

  .contact-message,
  .privacy-check,
  .contact-form .result-button,
  .contact-form .privacy-note,
  .form-error {
    grid-column: auto;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .trust-strip > div,
  .trust-strip > div:first-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: 90px;
  }

  .trust-strip > div:first-child {
    border-top: 0;
  }

  .philosophy {
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .section-heading h2 {
    font-size: 37px;
    margin-bottom: 38px;
  }

  .principles,
  .process-list,
  .process-heading {
    grid-template-columns: 1fr;
  }

  .principles article {
    padding-right: 0;
  }

  .principles h3 {
    margin-top: 20px;
  }

  .process {
    padding: 76px 0;
  }

  .process-heading > p:last-child {
    margin-top: 18px;
  }

  .process-list li,
  .process-list li + li {
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    display: grid;
    gap: 24px;
    grid-template-columns: 35px 1fr;
    min-height: 0;
    padding: 25px 0;
  }

  .process-list h3 {
    margin: 0 0 7px;
  }

  .process-list p {
    margin-bottom: 0;
  }

  .closing-cta {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .closing-cta .button {
    margin: 28px 0 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  footer p {
    margin: 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* WTS.cz v2 */

.product-intro {
  padding-bottom: 105px;
  padding-top: 110px;
}

.product-heading {
  align-items: end;
  display: grid;
  gap: 0 70px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  margin-bottom: 52px;
}

.product-heading .eyebrow {
  grid-column: 1 / -1;
}

.product-heading h2,
.family-heading h2,
.care-copy h2,
.consultation h2 {
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 0;
}

.product-heading > p:last-child,
.family-heading > p:last-child {
  color: var(--muted);
  margin: 0;
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-height: 365px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.product-card::before {
  background: var(--blue);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.product-card-grant {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

.product-card-grant::before,
.product-card-primary::before {
  background: var(--red);
}

.product-code {
  color: #9aa6ad;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.product-card-grant .product-code,
.product-card-grant p {
  color: rgba(255, 255, 255, 0.7);
}

.product-label {
  color: var(--red) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.product-card > p:not(.product-label) {
  color: var(--muted);
  font-size: 15px;
}

.product-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  margin-top: auto;
}

.product-card-grant a {
  color: var(--white);
}

.product-card a span {
  color: var(--red);
  margin-left: 5px;
}

.grant-section {
  background: var(--blue-deep);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.grant-section::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  height: 520px;
  position: absolute;
  right: -240px;
  top: -240px;
  width: 520px;
}

.grant-layout {
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  padding-bottom: 105px;
  padding-top: 105px;
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #9dd3ef;
}

.grant-copy h2 {
  font-size: clamp(36px, 4.3vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 760px;
}

.grant-lead {
  color: #d5e8f1;
  font-size: 19px;
  max-width: 720px;
}

.grant-copy > p:not(.eyebrow):not(.grant-lead) {
  color: #b9cdd7;
  max-width: 720px;
}

.grant-status {
  align-items: start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  gap: 13px;
  margin: 28px 0 22px;
  padding: 17px 18px;
}

.grant-status > span {
  background: #efb942;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 9px;
  margin-top: 7px;
  width: 9px;
}

.grant-status p {
  color: #e4eef3;
  font-size: 14px;
  margin: 0;
}

.grant-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.button-light {
  background: var(--white);
  color: var(--blue-deep);
}

.button-light:hover {
  background: #eef6fa;
}

.text-link-light {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.text-link-light span {
  color: #ff7180;
}

.grant-order {
  align-self: center;
  background: var(--white);
  border-top: 5px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.2);
  color: var(--ink);
  padding: 30px;
}

.grant-order-title {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.grant-order ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.grant-order li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 15px;
  padding: 15px 0;
}

.grant-order li > span {
  align-items: center;
  background: var(--surface);
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.grant-order li div {
  display: flex;
  flex-direction: column;
}

.grant-order li small {
  color: var(--muted);
}

.grant-disclaimer {
  color: #7a8790;
  font-size: 11px;
  margin: 18px 0 0;
}

.care-section {
  display: grid;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
  padding-bottom: 115px;
  padding-top: 115px;
}

.care-copy {
  align-self: center;
}

.care-copy h2 {
  font-size: clamp(44px, 5vw, 70px);
  margin-bottom: 25px;
}

.care-lead {
  color: var(--blue);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.care-copy > p:last-child {
  color: var(--muted);
}

.care-list {
  border-top: 1px solid var(--line);
}

.care-list article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 38px 1fr;
  padding: 24px 0;
}

.care-list article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  padding-top: 3px;
}

.care-list h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.care-list p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.care-list .watch-card {
  background: var(--surface);
  border-bottom: 0;
  border-radius: 8px;
  margin-top: 18px;
  padding: 22px;
}

.portfolio-section {
  background: var(--blue-deep);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.portfolio-section::before {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -330px;
  content: "";
  height: 620px;
  left: -260px;
  position: absolute;
  width: 620px;
}

.portfolio-layout {
  display: grid;
  gap: clamp(55px, 9vw, 135px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  padding-bottom: 105px;
  padding-top: 105px;
  position: relative;
  z-index: 1;
}

.portfolio-heading h2 {
  font-size: clamp(38px, 4.5vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 0;
}

.portfolio-copy {
  align-self: center;
}

.portfolio-copy p {
  color: #bcd0da;
}

.portfolio-copy .portfolio-lead {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.portfolio-copy .button {
  margin-top: 15px;
}

.service-family {
  background: var(--surface);
  max-width: none;
  padding-bottom: 105px;
  padding-left: max(clamp(24px, 7vw, 112px), calc((100vw - 1320px) / 2));
  padding-right: max(clamp(24px, 7vw, 112px), calc((100vw - 1320px) / 2));
  padding-top: 105px;
}

.family-heading {
  display: grid;
  gap: 0 70px;
  grid-template-columns: 1fr minmax(280px, 0.6fr);
  margin-bottom: 46px;
}

.family-heading .eyebrow {
  grid-column: 1 / -1;
}

.family-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
}

.family-grid article {
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 145px;
  padding: 24px;
}

.family-grid strong {
  color: var(--blue-deep);
  font-size: 17px;
  margin-bottom: 9px;
}

.family-grid span {
  color: var(--muted);
  font-size: 13px;
}

.family-note {
  border-left: 3px solid var(--red);
  color: var(--muted);
  font-size: 14px;
  margin: 38px 0 0;
  max-width: 970px;
  padding-left: 18px;
}

.family-note strong {
  color: var(--ink);
}

.consultation {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 100px;
  padding-top: 100px;
}

.consultation h2 {
  max-width: 900px;
}

.consultation-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 22px;
  max-width: 850px;
}

.consultation-note {
  font-size: 13px;
}

.consultation-button {
  white-space: nowrap;
}

.result-panel-priced {
  text-align: left;
}

.result-panel-priced .recommendation {
  margin-left: 0;
  max-width: none;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  margin: 20px 0 13px;
  overflow: hidden;
  padding: 17px;
}

.price-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 11px;
}

.price-heading span {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-heading small {
  color: var(--muted);
  font-size: 11px;
}

.price-breakdown {
  margin: 8px 0;
}

.price-breakdown > div {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 7px 0;
}

.price-breakdown dt {
  color: var(--muted);
  font-size: 12px;
}

.price-breakdown dd {
  font-size: 13px;
  font-weight: 750;
  margin: 0;
  text-align: right;
}

.price-breakdown .price-total {
  border-top: 1px solid var(--line);
  margin-top: 5px;
  padding-top: 12px;
}

.price-total dt,
.price-total dd {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.price-note,
.vat-note {
  color: #74828a;
  font-size: 10.5px;
  margin: 8px 0 0;
}

.vat-note {
  color: var(--ink);
  font-weight: 700;
}

.price-link,
.grant-result-link {
  color: var(--blue);
  display: inline-block;
  font-size: 11px;
  font-weight: 750;
  margin-top: 5px;
  text-decoration: underline;
  text-decoration-color: rgba(0, 97, 151, 0.25);
  text-underline-offset: 3px;
}

.price-card-individual h3 {
  font-size: 18px;
  margin: 18px 0 7px;
}

.price-card-individual > p:not(.vat-note) {
  color: var(--muted);
  font-size: 12px;
}

.result-grant {
  background: #eef7fb;
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  padding: 12px 14px;
}

.result-grant-label {
  color: var(--blue);
  display: block;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-grant strong {
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.result-grant p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  margin: 4px 0 0;
}

.scope-card {
  margin: 15px 0;
}

.scope-card > p {
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.scope-card ul {
  display: grid;
  gap: 3px 17px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0 0 7px;
  padding: 0;
}

.scope-card li {
  color: #4f6069;
  font-size: 10.5px;
  padding-left: 14px;
  position: relative;
}

.scope-card li::before {
  color: var(--blue);
  content: "✓";
  font-weight: 850;
  left: 0;
  position: absolute;
}

.scope-card small {
  color: #7a8790;
  display: block;
  font-size: 9.5px;
  line-height: 1.35;
}

.result-panel-priced .result-button {
  margin-top: 4px;
}

.grant-result-link {
  display: block;
  margin: 11px 0 0;
  text-align: center;
}

@media (min-width: 1051px) {
  .result-panel-priced {
    margin-bottom: -5px;
  }

  .result-panel-priced .back-button {
    margin-bottom: 8px;
  }

  .result-panel-priced h2 {
    font-size: 29px;
  }

  .result-panel-priced .recommendation {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}

@media (max-width: 1050px) {
  .header-link-desktop {
    display: none;
  }

  .product-heading,
  .family-heading,
  .grant-layout,
  .care-section,
  .portfolio-layout {
    grid-template-columns: 1fr;
  }

  .product-heading > p:last-child,
  .family-heading > p:last-child {
    margin-top: 22px;
    max-width: 700px;
  }

  .product-path {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 280px;
  }

  .grant-order {
    max-width: 620px;
  }

  .care-list {
    max-width: 760px;
  }

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

  .consultation {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .consultation-button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .header-actions {
    gap: 14px;
  }

  .header-actions .header-link {
    display: none;
  }

  .product-intro,
  .care-section,
  .portfolio-layout,
  .service-family,
  .consultation {
    padding-bottom: 74px;
    padding-top: 74px;
  }

  .product-heading {
    margin-bottom: 34px;
  }

  .product-card {
    min-height: 310px;
    padding: 26px;
  }

  .grant-layout {
    padding-bottom: 74px;
    padding-top: 74px;
  }

  .grant-copy h2 {
    font-size: 39px;
  }

  .grant-order {
    padding: 23px;
  }

  .care-section {
    gap: 35px;
  }

  .care-copy h2 {
    font-size: 48px;
  }

  .family-grid {
    grid-template-columns: 1fr;
  }

  .family-grid article {
    min-height: 0;
  }

  .scope-card ul {
    grid-template-columns: 1fr;
  }

  .price-heading {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

  .price-breakdown .price-total {
    align-items: end;
  }
}

/* WTS Grant landing page */

.grant-page .site-header {
  position: absolute;
}

.grant-page-hero {
  background: var(--blue-deep);
  color: var(--white);
  padding: 170px 0 100px;
}

.grant-page-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: minmax(0, 1fr) 340px;
}

.grant-page-hero h1 {
  font-size: clamp(43px, 5.3vw, 76px);
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin-bottom: 25px;
  max-width: 900px;
}

.grant-page-hero-inner > div > p:not(.eyebrow) {
  color: #c5d9e3;
  font-size: 19px;
  max-width: 720px;
}

.grant-page-hero-inner .button {
  margin-top: 16px;
}

.cta-meta {
  color: #9fb8c5;
  display: block;
  font-size: 11px;
  margin-top: 9px;
}

.grant-page-highlight {
  background: var(--white);
  border-top: 5px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: 34px;
}

.grant-page-highlight > span {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.grant-page-highlight > strong {
  color: var(--blue);
  display: block;
  font-size: 78px;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 18px 0 7px;
}

.grant-page-highlight p {
  font-weight: 750;
  line-height: 1.4;
}

.grant-page-highlight small {
  color: var(--muted);
  display: block;
  font-size: 11px;
}

.grant-page-status {
  max-width: 960px;
  padding-bottom: 90px;
  padding-top: 90px;
}

.status-badge {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.status-badge span {
  background: #efb942;
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.grant-page-status h2,
.grant-page-heading h2,
.grant-page-consult h2,
.grant-page-final h2 {
  color: var(--blue-deep);
  font-size: clamp(35px, 4.2vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.grant-page-status > p {
  color: var(--muted);
  font-size: 18px;
}

.grant-page-steps {
  background: var(--surface);
  padding: 100px 0;
}

.grant-page-heading {
  display: grid;
  gap: 0 70px;
  grid-template-columns: 1fr minmax(300px, 0.6fr);
  margin-bottom: 50px;
}

.grant-page-heading .eyebrow {
  grid-column: 1 / -1;
}

.grant-page-heading p:last-child {
  align-self: end;
  color: var(--muted);
}

.grant-timeline {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.grant-timeline li {
  border-right: 1px solid var(--line);
  min-height: 285px;
  padding: 25px;
}

.grant-timeline li:last-child {
  border-right: 0;
}

.grant-timeline li > span {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 45px;
}

.grant-timeline h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.grant-timeline p {
  color: var(--muted);
  font-size: 13px;
}

.grant-page-consult {
  display: grid;
  gap: clamp(50px, 10vw, 140px);
  grid-template-columns: minmax(0, 0.7fr) minmax(430px, 1fr);
  padding-bottom: 105px;
  padding-top: 105px;
}

.consult-outcome ul {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}

.consult-outcome li {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 650;
  padding: 14px 0 14px 27px;
  position: relative;
}

.consult-outcome li::before {
  color: var(--blue);
  content: "✓";
  font-weight: 850;
  left: 0;
  position: absolute;
}

.consult-outcome > p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 26px;
}

.grant-page-final {
  background: var(--blue-deep);
  color: var(--white);
  padding: 100px 0;
}

.grant-page-final h2 {
  color: var(--white);
  max-width: 940px;
}

.grant-page-final > .section-shell > p:not(.eyebrow):not(.grant-legal) {
  color: #bfd3dd;
  font-size: 18px;
}

.grant-legal {
  color: #91aab7;
  font-size: 10px;
  margin: 35px 0 0;
  max-width: 900px;
}

@media (max-width: 1050px) {
  .grant-page-hero-inner,
  .grant-page-heading,
  .grant-page-consult {
    grid-template-columns: 1fr;
  }

  .grant-page-highlight {
    max-width: 420px;
  }

  .grant-page-heading p:last-child {
    max-width: 720px;
  }

  .grant-timeline {
    grid-template-columns: 1fr;
  }

  .grant-timeline li {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: 35px 1fr;
    min-height: 0;
  }

  .grant-timeline li > span {
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .grant-page-hero {
    padding: 135px 0 72px;
  }

  .grant-page-hero h1 {
    font-size: 43px;
  }

  .grant-page-highlight {
    padding: 27px;
  }

  .grant-page-status,
  .grant-page-consult {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .grant-page-steps,
  .grant-page-final {
    padding: 72px 0;
  }
}
