/* ==========================================================================
   Fortéos — système de design V2 (porté depuis la refonte Next.js du client).
   Chargé UNIQUEMENT par le gabarit BaseV2 (homepage). Les autres pages
   utilisent encore /styles.css — migration page par page en Phase 2.
   Manrope est AUTO-HÉBERGÉE (pas de Google Fonts) pour rester conforme RGPD.
   ========================================================================== */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root { --font-manrope: 'Manrope'; }

/* [project]/src/app/globals.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .block {
    display: block;
  }

  .table {
    display: table;
  }
}

:root {
  --purple: #48206f;
  --purple-dark: #28123f;
  --purple-soft: #f2edf7;
  --slate: #1f2937;
  --muted: #667085;
  --teal: #24a9a1;
  --orange: #eb7137;
  --line: #ded9e5;
  --paper: #f7f8fa;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--slate);
  background: #fff;
  margin: 0;
  font-family: Arial, Helvetica Neue, sans-serif;
  line-height: 1.55;
}

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

img {
  object-fit: cover;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

button, .button {
  cursor: pointer;
}

.wrap {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.narrow {
  max-width: 800px;
}

.french-line {
  z-index: 30;
  background: linear-gradient(90deg, #18397d 0 33.33%, #fff 33.33% 66.66%, #e13a3a 66.66%);
  height: 3px;
  position: relative;
}

.header {
  z-index: 25;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #fffffff5;
  border-bottom: 1px solid #eee;
  height: 84px;
  position: sticky;
  top: 0;
}

.header-inner {
  align-items: center;
  gap: 26px;
  height: 100%;
  display: flex;
}

.logo {
  width: 130px;
  height: auto;
  display: block;
}

.desktop-nav {
  align-items: center;
  gap: 21px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.desktop-nav a:hover {
  color: var(--purple);
}

.button {
  background: var(--purple);
  color: #fff;
  border: 1px solid var(--purple);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 15px 21px;
  font-size: 14px;
  font-weight: 800;
  transition: all .2s;
  display: inline-flex;
}

.button:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.button-small {
  padding: 12px 16px;
  font-size: 13px;
}

.button-secondary {
  color: var(--purple);
  background: none;
  border-color: #bfb2cc;
}

.hero .button-secondary, .page-hero .button-secondary {
  color: #fff;
  border-color: #ffffff80;
}

.hero .button-secondary:hover, .page-hero .button-secondary:hover {
  color: var(--purple);
  background: #fff;
}

.mobile-menu {
  margin-left: auto;
  display: none;
}

.mobile-menu summary {
  cursor: pointer;
  font-weight: 800;
}

.mobile-menu nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
  gap: 18px;
  padding: 20px;
  display: grid;
  position: fixed;
  top: 87px;
  left: 0;
  right: 0;
  box-shadow: 0 18px 40px #21152c20;
}

.hero {
  background: var(--purple-dark);
  color: #fff;
  padding: 72px 0 64px;
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 62px;
  display: grid;
}

.eyebrow {
  color: var(--purple);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 900;
  display: block;
}

.eyebrow.light {
  color: #bceae7;
}

.hero h1, .page-hero h1 {
  letter-spacing: -.045em;
  margin: 0 0 25px;
  font-size: clamp(42px, 5vw, 69px);
  font-weight: 800;
  line-height: 1.03;
}

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

.hero-copy > p, .page-hero p {
  color: #e8e1ef;
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 18px;
}

.cta-row {
  flex-wrap: wrap;
  gap: 11px;
  margin: 28px 0 19px;
  display: flex;
}

.hero-copy > small {
  color: #bcb1c8;
  max-width: 680px;
  display: block;
}

.proof-bar {
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  grid-template-columns: repeat(6, 1fr);
  display: grid;
}

.proof-grid div {
  border-left: 1px solid var(--line);
  padding: 22px 15px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.proof-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid span {
  color: var(--teal);
  margin-bottom: 5px;
  font-size: 10px;
  display: block;
}

.section-head {
  max-width: 730px;
  margin-bottom: 50px;
}

.section-head.horizontal {
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  max-width: none;
  display: flex;
}

.section-head h2, .method h2, .composite h2, .form-section h2, .faq h2, .aid-card h2 {
  letter-spacing: -.04em;
  color: #21132d;
  margin: 0 0 18px;
  font-size: clamp(34px, 4.2vw, 55px);
  line-height: 1.08;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.section-head.horizontal > a {
  color: var(--purple);
  white-space: nowrap;
  font-weight: 800;
}

.method {
  color: #fff;
  background: #21132d;
}

.method h2, .composite h2, .form-section h2 {
  color: #fff;
}

.method ol {
  grid-template-columns: 1fr 1fr;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.method li {
  border-top: 1px solid #574666;
  gap: 15px;
  padding: 20px 10px;
  font-weight: 800;
  display: flex;
}

.method li span {
  color: #77d8d1;
}

.composite {
  background: var(--purple);
  color: #fff;
}

.composite p {
  color: #e0d7e8;
  font-size: 18px;
}

.composite ul {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.composite li {
  border-top: 1px solid #755c8c;
  padding: 18px 15px 18px 0;
  font-weight: 700;
}

.composite li:before {
  content: "+";
  color: #79d8d2;
  margin-right: 10px;
}

.aid-card {
  border-left: 5px solid var(--teal);
  background: #fff;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 48px;
  display: flex;
  box-shadow: 0 15px 50px #40245610;
}

.aid-card > div {
  max-width: 720px;
}

.aid-card p {
  color: var(--muted);
  font-size: 18px;
}

.aid-card small {
  color: var(--muted);
  display: block;
}

.faq-grid {
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  display: grid;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq details p {
  color: var(--muted);
  padding-right: 30px;
}

.form-section {
  color: #fff;
  background: #24142f;
}

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

.form-grid > div:first-child {
  position: sticky;
  top: 120px;
}

.form-grid > div:first-child > p {
  color: #d1c6da;
  font-size: 18px;
}

.form-reassurance {
  color: #aee4df;
  gap: 9px;
  margin-top: 35px;
  font-size: 14px;
  display: grid;
}

.lead-form {
  color: var(--slate);
  background: #fff;
  padding: 38px;
  box-shadow: 0 25px 70px #0003;
}

.progress {
  background: #eee;
  height: 4px;
  margin-bottom: 13px;
}

.progress span {
  background: var(--teal);
  height: 100%;
  transition: width .2s;
  display: block;
}

.step-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
}

.lead-form fieldset {
  border: 0;
  margin: 25px 0;
  padding: 0;
}

.lead-form legend {
  color: #251633;
  margin-bottom: 22px;
  font-size: 28px;
  font-weight: 800;
}

.lead-form label {
  gap: 7px;
  margin: 15px 0;
  font-size: 13px;
  font-weight: 800;
  display: grid;
}

.lead-form input, .lead-form select, .lead-form textarea {
  color: #222;
  background: #fff;
  border: 1px solid #cfc8d6;
  border-radius: 2px;
  width: 100%;
  padding: 13px;
}

.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline-offset: 1px;
  border-color: var(--teal);
  outline: 3px solid #b8e8e5;
}

.lead-form small, .optional, .privacy-note {
  color: var(--muted);
  font-weight: 400;
}

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

.check {
  align-items: start;
  grid-template-columns: 20px 1fr !important;
  font-weight: 400 !important;
}

.check input {
  width: auto;
  margin-top: 4px;
}

.check a {
  text-decoration: underline;
}

.honeypot {
  left: -9999px;
  position: absolute !important;
}

.form-actions {
  justify-content: flex-end;
  gap: 12px;
  display: flex;
}

.form-actions button {
  background: var(--purple);
  color: #fff;
  border: 0;
  padding: 14px 24px;
  font-weight: 800;
}

.form-actions .back {
  color: var(--purple);
  background: none;
}

.form-error {
  color: #9a1d1d;
  background: #fff0f0;
  border-left: 4px solid #c53131;
  padding: 12px;
}

.form-success {
  color: var(--slate);
  text-align: center;
  background: #fff;
  padding: 50px;
}

.form-success h2 {
  color: #251633 !important;
  font-size: 34px !important;
}

.page-hero {
  background: var(--purple-dark);
  color: #fff;
  padding: 70px 0;
}

.page-hero-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 65px;
  display: grid;
}

.page-image {
  height: 520px;
  position: relative;
}

.page-image img {
  border-radius: 2px;
}

.points {
  border-bottom: 1px solid var(--line);
}

.points > .wrap {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.points div {
  border-left: 1px solid var(--line);
  padding: 24px;
  font-weight: 800;
}

.points div:last-child {
  border-right: 1px solid var(--line);
}

.points span {
  color: var(--teal);
  font-size: 11px;
  display: block;
}

.editorial {
  max-width: 900px;
}

.editorial article {
  border-top: 1px solid var(--line);
  grid-template-columns: 80px 1fr;
  padding: 45px 0;
  display: grid;
}

.editorial article > span {
  color: var(--teal);
  font-weight: 900;
}

.editorial h2 {
  letter-spacing: -.03em;
  color: #251633;
  margin: 0 0 14px;
  font-size: 36px;
}

.editorial p {
  color: var(--muted);
  max-width: 680px;
  font-size: 18px;
}

/* Liens in-content du bloc éditorial (maillage interne — stratégie SEO client) :
   sans ce style, ils héritaient du gris courant et étaient invisibles en tant que liens. */
.editorial p a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
}

.editorial p a:hover {
  color: var(--purple-dark);
}

.legal h1 {
  color: #251633;
  font-size: 58px;
}

.notice {
  background: #fff8e8;
  border-left: 4px solid #e6a326;
  padding: 28px;
}

.footer {
  color: #cfc5d6;
  background: #160d1f;
  padding: 70px 0 90px;
}

.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  display: grid;
}

.footer-grid > div {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer-grid p {
  max-width: 380px;
}

.footer h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 13px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #483953;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 12px;
  display: flex;
}

.sticky-mobile {
  display: none;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .desktop-cta {
    margin-left: auto;
  }

  .hero-grid,
.page-hero-grid,
.form-grid,
.faq-grid {
    grid-template-columns: 1fr;
  }

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

  .form-grid > div:first-child {
    position: static;
  }

  .page-image {
    height: 480px;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .header {
    height: 70px;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-menu nav {
    top: 73px;
  }

  .hero, .page-hero {
    padding: 48px 0;
  }

  .hero h1, .page-hero h1 {
    font-size: 38px;
  }

  .hero-copy > p, .page-hero p {
    font-size: 16px;
  }

  .cta-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .proof-grid div {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .section-head.horizontal {
    display: block;
  }

  .section-head.horizontal > a {
    margin-top: 15px;
    display: inline-block;
  }

  .method ol {
    grid-template-columns: 1fr;
  }

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

  .aid-card {
    padding: 30px;
    display: block;
  }

  .aid-card .button {
    margin-top: 28px;
  }

  .faq-grid {
    gap: 30px;
  }

  .lead-form {
    margin-inline: -6px;
    padding: 24px;
  }

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

  .points > .wrap {
    grid-template-columns: 1fr;
  }

  .points div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .page-image {
    height: 390px;
  }

  .editorial article {
    grid-template-columns: 45px 1fr;
  }

  .editorial h2 {
    font-size: 29px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    gap: 8px;
    display: grid;
  }

  .sticky-mobile {
    z-index: 40;
    background: #fff;
    grid-template-columns: 1fr 1fr;
    display: grid;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -5px 25px #0002;
  }

  .sticky-mobile a {
    text-align: center;
    color: var(--purple);
    padding: 14px 8px;
    font-size: 12px;
    font-weight: 900;
  }

  .sticky-mobile a:first-child {
    background: var(--purple);
    color: #fff;
  }

  .footer {
    padding-bottom: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

.hero-audit {
  color: #fff;
  text-underline-offset: 4px;
  margin: -3px 0 18px;
  font-size: 14px;
  text-decoration: underline;
  display: block;
}

.qualification {
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 54px 0;
}

.qualification h2 {
  letter-spacing: -.03em;
  color: #251633;
  margin: 0;
  font-size: 29px;
  line-height: 1.15;
}

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

.documentary-grid figure {
  background: #eee;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.documentary-grid .doc-large {
  grid-area: span 2 / span 2;
}

.documentary-grid img {
  transition: transform .4s;
}

.documentary-grid figure:hover img {
  transform: scale(1.025);
}

.documentary-grid figcaption {
  background: #fffffff0;
  padding: 12px 14px;
  font-size: 12px;
  display: grid;
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  box-shadow: 0 8px 25px #0002;
}

.documentary-grid figcaption b {
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}

.documentary-grid figcaption span {
  font-weight: 800;
}

.field .section-head p {
  max-width: 680px;
}

@media (max-width: 1000px) {

  .documentary-grid {
    grid-template-rows: 360px 260px 260px;
    grid-template-columns: 1fr 1fr;
  }

  .documentary-grid .doc-large {
    grid-area: auto / span 2;
  }
}

@media (max-width: 700px) {
  .hero-audit {
    margin-top: 0;
  }

  .qualification {
    padding: 45px 0;
  }

  .documentary-grid {
    grid-template-rows: repeat(5, 340px);
    grid-template-columns: 1fr;
  }

  .documentary-grid .doc-large {
    grid-column: auto;
  }

  .documentary-grid figcaption {
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
}

.field-proof {
  border-top: 1px solid var(--line);
  background: #f7f8fa;
  padding: 70px 0;
}

.field-proof-grid {
  grid-template-columns: 1fr .8fr .8fr;
  align-items: stretch;
  gap: 18px;
  display: grid;
}

.field-proof-grid > div {
  padding: 20px 30px 20px 0;
}

.field-proof h2 {
  letter-spacing: -.03em;
  color: #251633;
  margin: 0 0 15px;
  font-size: 34px;
  line-height: 1.1;
}

.field-proof p {
  color: var(--muted);
}

.field-proof figure {
  min-height: 330px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.field-proof figcaption {
  background: #fff;
  padding: 12px;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 800px) {
  .field-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .field-proof-grid > div {
    grid-column: span 2;
  }

  .field-proof figure {
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .field-proof-grid {
    grid-template-columns: 1fr;
  }

  .field-proof-grid > div {
    grid-column: auto;
  }

  .field-proof figure {
    min-height: 340px;
  }
}

.form-topline {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  display: flex;
}

.form-topline strong {
  color: var(--purple);
  font-size: 16px;
}

.form-topline span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 520px) {
  .form-topline {
    gap: 3px;
    display: grid;
  }
}

body {
  letter-spacing: -.006em;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

.wrap {
  width: min(1200px, 100% - 48px);
}

.header {
  height: 78px;
}

.logo {
  width: 124px;
}

.desktop-nav {
  gap: 24px;
  font-size: 13px;
}

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

.hero h1 {
  letter-spacing: -.043em;
  max-width: 690px;
  font-size: clamp(42px, 4.1vw, 56px);
  line-height: 1.07;
}

.hero-copy > p {
  max-width: 660px;
  font-size: 17px;
  line-height: 1.62;
}

.hero-reassurance {
  color: #c8eee9;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: -5px 0 16px;
  font-size: 12px;
  font-weight: 750;
  display: flex;
}

.hero-audit {
  margin-bottom: 14px;
  font-size: 13px;
}

.hero-copy > small {
  font-size: 11px;
  line-height: 1.45;
}

.proof-grid div {
  padding: 18px 14px;
}

.section {
  padding: 86px 0;
}

.section-head {
  margin-bottom: 38px;
}

.section-head h2, .method h2, .composite h2, .form-section h2, .faq h2, .aid-card h2 {
  letter-spacing: -.038em;
  font-size: clamp(34px, 3.5vw, 47px);
  line-height: 1.12;
}

.section-head p, .aid-card p, .editorial p {
  font-size: 17px;
  line-height: 1.65;
}

.qualification {
  padding: 42px 0;
}

.qualification h2 {
  font-size: 26px;
}

.method li {
  padding: 17px 8px;
  font-size: 15px;
}

.composite h2 {
  font-size: 43px;
}

.aid-card {
  padding: 42px;
}

.documentary-grid {
  grid-template-rows: 245px 245px;
}

.faq-grid {
  gap: 70px;
}

.faq summary {
  font-size: 17px;
}

.form-grid {
  grid-template-columns: .8fr 1.2fr;
  gap: 62px;
}

.lead-form {
  max-width: 720px;
  padding: 34px;
}

.lead-form legend {
  font-size: 25px;
}

.page-hero {
  padding: 58px 0;
}

.page-hero-grid {
  gap: 54px;
}

.page-hero h1 {
  font-size: clamp(40px, 4.2vw, 57px);
  line-height: 1.08;
}

.page-hero p {
  font-size: 17px;
}

.page-image {
  height: 470px;
}

.editorial article {
  padding: 38px 0;
}

.editorial h2 {
  font-size: 32px;
}

.field-proof {
  padding: 58px 0;
}

.field-proof h2 {
  font-size: 31px;
}

.footer {
  padding-top: 58px;
}

@media (max-width: 1000px) {
  .wrap {
    width: min(100% - 36px, 1200px);
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
.page-hero-grid,
.form-grid,
.faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

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

  .form-grid {
    gap: 42px;
  }

  .page-image {
    height: 450px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .wrap {
    width: calc(100% - 28px);
  }

  .header {
    height: 68px;
  }

  .logo {
    width: 122px;
  }

  .hero, .page-hero {
    padding: 40px 0 44px;
  }

  .hero h1, .page-hero h1 {
    letter-spacing: -.035em;
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-copy > p, .page-hero p {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .hero-reassurance {
    gap: 5px 12px;
  }

  .proof-grid div {
    padding: 15px 10px;
    font-size: 11px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2, .method h2, .composite h2, .form-section h2, .faq h2, .aid-card h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .section-head p, .aid-card p, .editorial p {
    font-size: 15.5px;
  }

  .qualification h2 {
    font-size: 24px;
  }

  .documentary-grid {
    grid-template-rows: repeat(5, 310px);
  }

  .lead-form {
    padding: 22px;
  }

  .lead-form legend {
    font-size: 23px;
  }

  .page-image {
    height: 360px;
  }

  .editorial h2 {
    font-size: 27px;
  }

  .field-proof {
    padding: 48px 0;
  }

  .field-proof h2 {
    font-size: 28px;
  }
}

@media (max-width: 1000px) {
  .hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

.breadcrumb {
  color: #bfb2c9;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 11px;
  display: flex;
}

.breadcrumb a {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.breadcrumb + .eyebrow {
  margin-bottom: 16px;
}

.related-journey {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 58px 0;
}

.related-journey > .wrap {
  grid-template-columns: .55fr 1.45fr;
  align-items: center;
  gap: 48px;
  display: grid;
}

.related-journey h2 {
  color: #251633;
  margin: 0;
  font-size: 29px;
  line-height: 1.18;
}

.related-journey nav {
  border: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.related-journey nav a {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--purple);
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 800;
}

.related-journey nav a:nth-child(2n) {
  border-right: 0;
}

.related-journey nav a:nth-child(n+3) {
  border-bottom: 0;
}

.related-journey nav span {
  color: var(--teal);
  margin-right: 10px;
  font-size: 10px;
}

@media (max-width: 800px) {
  .related-journey > .wrap {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 520px) {
  .related-journey {
    padding: 45px 0;
  }

  .related-journey nav {
    grid-template-columns: 1fr;
  }

  .related-journey nav a {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .related-journey nav a:last-child {
    border-bottom: 0 !important;
  }
}

.hero-grid {
  grid-template-columns: .92fr 1.08fr;
}

@media (max-width: 1000px) {
  .hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

.hero {
  padding-bottom: 88px;
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 44px;
  }
}

:root {
  --ink: #21152c;
  --lavender: #f1eafa;
  --mint: #e6f7f4;
  --warm: #fff5ed;
}

body {
  color: #3f4753;
  background: #fcfbfd;
}

.header {
  background: #fcfbfde6;
  border-bottom: 0;
  box-shadow: 0 8px 30px #2b183a0f;
}

.button {
  border-radius: 12px;
  padding: 14px 21px;
  box-shadow: 0 9px 22px #48206f26;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #48206f38;
}

.button-secondary {
  box-shadow: none;
}

.hero {
  color: var(--ink);
  background: radial-gradient(circle at 82% 14%, #24a9a129, #0000 25%), radial-gradient(circle at 9% 84%, #eb713717, #0000 22%), linear-gradient(145deg, #fbf8fd 0%, #f4eef9 58%, #edf8f7 100%);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  border: 1px solid #48206f1c;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  position: absolute;
  top: -160px;
  right: -130px;
}

.hero .eyebrow {
  color: var(--purple);
}

.hero h1 {
  color: var(--ink);
  font-weight: 850;
}

.hero-copy > p {
  color: #596170;
}

.hero .button-secondary {
  color: var(--purple);
  background: #fff;
  border-color: #d8cce1;
}

.hero .button-secondary:hover {
  background: var(--purple);
  color: #fff;
}

.hero-reassurance {
  color: #197e78;
}

.hero-audit {
  color: var(--purple);
}

.hero-audit strong {
  color: #197e78;
}

.hero-copy > small {
  color: #727987;
}

.proof-grid {
  gap: 9px;
}

.proof-grid div, .proof-grid div:last-child {
  background: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  box-shadow: 0 4px 15px #2919350f;
}

.proof-grid span {
  margin-right: 7px;
  display: inline;
}

.qualification {
  background: #fcfbfd;
  border: 0;
  padding: 60px 0;
}

.method {
  background: linear-gradient(145deg, #21132d, #342044);
  border-radius: 28px 28px 0 0;
  margin-top: 28px;
}

.composite {
  background: linear-gradient(145deg, #4b216f, #65308d);
}

.aid {
  background: #fcfbfd;
}

.aid-card {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 16px 45px #2b1a3717;
}

.documentary-grid figure {
  border-radius: 20px;
}

.documentary-grid figcaption {
  border-radius: 12px;
}

.faq details {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 9px;
  padding: 19px 20px;
  box-shadow: 0 5px 18px #2b1a370d;
  border: 0 !important;
}

.form-section {
  background: radial-gradient(circle at 15% 20%, #24a9a12e, #0000 28%), linear-gradient(145deg, #261532, #3b2050);
}

.lead-form {
  border-radius: 24px;
  box-shadow: 0 28px 70px #00000038;
}

.lead-form input, .lead-form select, .lead-form textarea {
  background: #fbfafc;
  border-radius: 10px;
}

.form-actions button {
  border-radius: 10px;
}

.footer {
  background: #180e21;
}

.page-hero {
  background: radial-gradient(circle at 85% 10%, #24a9a12e, #0000 30%), linear-gradient(145deg, #2d183e, #46255f);
}

.page-image {
  border-radius: 25px;
  overflow: hidden;
  transform: rotate(1deg);
  box-shadow: 0 24px 55px #0000003b;
}

.points {
  background: #fcfbfd;
  border: 0;
}

.points > .wrap {
  gap: 10px;
  padding: 18px 0;
}

.points div, .points div:last-child {
  background: #fff;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 5px 18px #2b1a370d;
}

.related-journey nav {
  border: 0;
  gap: 8px;
}

.related-journey nav a {
  background: #f5f1f8;
  border-radius: 12px;
  border: 0 !important;
}

.field-proof figure {
  border-radius: 20px;
}

.field-proof figcaption {
  border-radius: 10px;
  margin: 10px;
  left: 0;
  right: 0;
}

@media (max-width: 700px) {
  .hero {
    padding-top: 44px;
  }

  .proof-grid div {
    border-radius: 14px;
  }

  .method {
    border-radius: 22px 22px 0 0;
  }

  .aid-card,
.lead-form {
    border-radius: 19px;
  }

  .documentary-grid figure {
    border-radius: 16px;
  }
}

body {
  font-family: var(--font-manrope),Arial,sans-serif;
  letter-spacing: -.012em;
  font-weight: 450;
}

h1, h2, h3, .button, button, strong {
  font-family: var(--font-manrope),Arial,sans-serif;
}

.desktop-nav {
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  color: #3e4350;
}

.desktop-cta {
  font-weight: 750;
}

.hero {
  padding-top: 62px;
  padding-bottom: 70px;
}

.hero-grid {
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
}

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

.hero h1 {
  letter-spacing: -.045em;
  max-width: 590px;
  margin-bottom: 24px;
}

.hero-question {
  color: #21152c;
  font-size: clamp(40px, 3.55vw, 52px);
  font-weight: 760;
  line-height: 1.04;
  display: block;
}

.hero-answer {
  color: #56247e;
  letter-spacing: -.035em;
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(27px, 2.45vw, 36px);
  font-weight: 610;
  line-height: 1.17;
  display: block;
}

.hero-copy > p {
  color: #626a78;
  max-width: 570px;
  font-size: 15.5px;
  line-height: 1.68;
}

.hero .eyebrow {
  letter-spacing: .18em;
  margin-bottom: 24px;
  font-size: 10px;
}

.hero .cta-row {
  margin: 24px 0 16px;
}

.hero .button {
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 12px;
}

.hero-reassurance {
  font-size: 11px;
}

.hero-audit {
  font-size: 12px;
}

.hero-copy > small {
  max-width: 560px;
  font-size: 10px;
}

.section-head h2, .method h2, .composite h2, .form-section h2, .faq h2, .aid-card h2 {
  letter-spacing: -.04em;
  font-weight: 680;
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-question {
    font-size: 43px;
  }

  .hero-answer {
    font-size: 30px;
  }
}

@media (max-width: 1000px) {
  .hero .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy, .hero h1, .hero-answer {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 38px;
  }

  .hero-question {
    font-size: 33px;
    line-height: 1.08;
  }

  .hero-answer {
    margin-top: 12px;
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-copy > p {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero .cta-row {
    display: grid;
  }
}

.page-hero {
  color: var(--ink);
  background: radial-gradient(circle at 82% 16%, #24a9a124, #0000 28%), linear-gradient(145deg, #fbf8fd, #f0f7f8);
  padding: 64px 0;
}

.page-hero .eyebrow.light {
  color: var(--purple);
}

.page-hero h1 {
  color: var(--ink);
  letter-spacing: -.045em;
  font-size: clamp(38px, 3.65vw, 51px);
  font-weight: 720;
  line-height: 1.08;
}

.page-hero p {
  color: #626a78;
  font-size: 15.5px;
  line-height: 1.68;
}

.page-hero .button-secondary {
  color: var(--purple);
  background: #fff;
  border-color: #d8cce1;
}

.page-hero .button-secondary:hover {
  background: var(--purple);
  color: #fff;
}

.breadcrumb {
  color: #7a7180;
}

.page-image {
  border: 9px solid #fff;
  border-radius: 25px;
  height: 430px;
  transform: none;
  box-shadow: 0 24px 55px #301d3e24;
}

.points {
  background: #fcfbfd;
}

.points > .wrap {
  padding: 22px 0;
}

.points div {
  flex-direction: column;
  justify-content: center;
  min-height: 86px;
  display: flex;
}

.editorial h2 {
  color: var(--ink);
  font-weight: 680;
}

.editorial article {
  border-color: #e9e3ec;
}

.related-journey {
  background: #fcfbfd;
}

.field-proof {
  background: #f7f3f9;
}

.guide-breadcrumb {
  color: #7a7180;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 11px;
  display: flex;
}

.guide-breadcrumb a {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.guide-conversion {
  color: #fff;
  background: linear-gradient(135deg, #442064, #65318b);
  padding: 70px 0;
}

.guide-conversion > .wrap {
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  display: flex;
}

.guide-conversion h2 {
  letter-spacing: -.04em;
  max-width: 760px;
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
}

.guide-conversion .button {
  color: var(--purple);
  white-space: nowrap;
  background: #fff;
  border-color: #fff;
}

@media (max-width: 1000px) {

  .guide-conversion > .wrap {
    display: grid;
  }

  .page-image {
    height: 390px;
  }
}

@media (max-width: 650px) {
  .page-hero {
    padding: 44px 0;
  }

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

  .page-image {
    border-width: 6px;
    height: 330px;
  }

  .guide-conversion {
    padding: 55px 0;
  }

  .guide-conversion h2 {
    font-size: 30px;
  }

  .guide-conversion .button {
    width: 100%;
  }
}

.aid-card:has(.aid-number) {
  grid-template-columns: .46fr 1.2fr auto;
  align-items: center;
  display: grid;
}

.aid-number {
  color: #fff;
  background: linear-gradient(145deg, #4c2271, #65318b);
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: 28px;
  display: flex;
}

.aid-number strong {
  font-size: 17px;
  font-weight: 550;
  line-height: 1;
  display: grid;
}

.aid-number b {
  letter-spacing: -.06em;
  font-size: 48px;
}

.aid-number span {
  color: #e4dce9;
  margin-top: 12px;
  font-size: 10px;
  line-height: 1.4;
}

.aid-card:has(.aid-number) > div:nth-child(2) {
  max-width: 620px;
}

.aid-card:has(.aid-number) > div:nth-child(2) h2 {
  font-size: 37px;
}

@media (max-width: 950px) {
  .aid-card:has(.aid-number) {
    grid-template-columns: .55fr 1.45fr;
  }

  .aid-card:has(.aid-number) > .button {
    grid-column: span 2;
    justify-self: start;
  }
}

@media (max-width: 650px) {
  .aid-card:has(.aid-number) {
    grid-template-columns: 1fr;
  }

  .aid-card:has(.aid-number) > .button {
    grid-column: auto;
    width: 100%;
  }

  .aid-number b {
    font-size: 43px;
  }

  .aid-card:has(.aid-number) > div:nth-child(2) h2 {
    font-size: 30px;
  }
}

.header-inner {
  gap: 20px;
}

.desktop-nav {
  gap: 16px;
}

.desktop-nav a, .desktop-cta {
  white-space: nowrap;
}

.home-guides {
  color: #fff;
  background: #201329;
  padding: 90px 0;
}

.home-guides .section-head h2 {
  color: #fff;
}

.home-guides .section-head > a {
  color: #9be2dd;
}

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

.home-guide-grid a {
  background: #ffffff0f;
  border: 1px solid #ffffff1f;
  border-radius: 21px;
  flex-direction: column;
  min-height: 280px;
  padding: 30px;
  transition: all .2s;
  display: flex;
}

.home-guide-grid a:nth-child(2) {
  background: #24a9a121;
}

.home-guide-grid a:nth-child(3) {
  background: #eb71371a;
}

.home-guide-grid a:hover {
  background: #ffffff1c;
  transform: translateY(-5px);
}

.home-guide-grid span {
  color: #89ddd6;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  font-weight: 900;
}

.home-guide-grid h3 {
  margin: 55px 0 9px;
  font-size: 25px;
  line-height: 1.2;
}

.home-guide-grid p {
  color: #cfc5d6;
  font-size: 13px;
}

.home-guide-grid b {
  color: #fff;
  margin-top: auto;
  font-size: 12px;
}

.article-hero {
  background: radial-gradient(circle at 88% 10%, #24a9a126, #0000 28%), linear-gradient(145deg, #fbf8fd, #f1f8f8);
  padding: 64px 0;
}

.article-hero-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 64px;
  display: grid;
}

.article-hero h1 {
  letter-spacing: -.05em;
  max-width: 620px;
  color: var(--ink);
  margin: 0 0 22px;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 720;
  line-height: 1.06;
}

.article-hero p {
  color: #626a78;
  max-width: 580px;
  margin-bottom: 27px;
  font-size: 16px;
  line-height: 1.68;
}

.article-visual {
  aspect-ratio: 3 / 2;
  border: 9px solid #fff;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px #301d3e26;
}

.article-visual img {
  object-fit: cover;
}

.guide-takeaways {
  background: #fcfbfd;
  padding: 22px 0;
}

.guide-takeaways > .wrap {
  grid-template-columns: .7fr repeat(3, 1fr);
  align-items: stretch;
  gap: 8px;
  display: grid;
}

.guide-takeaways > div > strong, .guide-takeaways > div > div {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 5px 18px #2b1a370d;
}

.guide-takeaways > div > strong {
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .1em;
  place-items: center;
  font-size: 12px;
  display: grid;
}

.guide-takeaways > div > div {
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.guide-takeaways span {
  color: var(--teal);
  font-size: 9px;
}

.article-body {
  background: #fff;
  padding: 86px 0;
}

.article-layout {
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 80px;
  display: grid;
}

.article-layout aside {
  background: #f6f2f8;
  border-radius: 17px;
  gap: 10px;
  padding: 22px;
  display: grid;
  position: sticky;
  top: 110px;
}

.article-layout aside > span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
  font-weight: 900;
}

.article-layout aside a {
  color: var(--muted);
  font-size: 12px;
}

.article-layout aside a:last-child {
  color: var(--purple);
  margin-top: 10px;
  font-weight: 800;
}

.article-content {
  max-width: 760px;
}

.article-content article {
  padding: 0 0 65px 60px;
  position: relative;
}

.article-content article:before {
  content: "";
  background: #ded6e3;
  width: 1px;
  position: absolute;
  top: 28px;
  bottom: 18px;
  left: 17px;
}

.article-content article > span {
  width: 36px;
  height: 36px;
  color: var(--purple);
  background: #efe8f4;
  border-radius: 50%;
  place-items: center;
  font-size: 9px;
  font-weight: 900;
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
}

.article-content h2 {
  letter-spacing: -.035em;
  color: var(--ink);
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.18;
}

.article-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.article-content a {
  color: var(--purple);
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  display: inline-block;
}

.article-source {
  background: #edf8f6;
  padding: 60px 0;
}

.article-source > .wrap {
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  display: flex;
}

.article-source h2 {
  letter-spacing: -.04em;
  max-width: 750px;
  color: var(--ink);
  margin: 0 0 12px;
  font-size: 35px;
  line-height: 1.16;
}

.article-source p {
  max-width: 760px;
  color: var(--muted);
}

.article-source .button {
  white-space: nowrap;
}

@media (max-width: 1050px) {

  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-visual {
    max-width: 800px;
  }

  .article-layout {
    grid-template-columns: 210px 1fr;
    gap: 45px;
  }

  .desktop-nav {
    gap: 13px;
    font-size: 12px;
  }
}

@media (max-width: 750px) {

  .home-guide-grid {
    grid-template-columns: 1fr;
  }

  .home-guide-grid a {
    min-height: 230px;
  }

  .home-guide-grid h3 {
    margin-top: 35px;
  }

  .article-hero {
    padding: 44px 0;
  }

  .article-hero h1 {
    font-size: 35px;
  }

  .article-visual {
    border-width: 6px;
    border-radius: 18px;
  }

  .guide-takeaways > .wrap {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 60px 0;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-layout aside {
    position: static;
  }

  .article-content article {
    padding-left: 48px;
  }

  .article-content h2 {
    font-size: 28px;
  }

  .article-source > .wrap {
    display: grid;
  }

  .article-source h2 {
    font-size: 29px;
  }

  .article-source .button {
    width: 100%;
  }
}

.interactive-house {
  margin-bottom: 32px;
}

.building-switch {
  justify-content: center;
  gap: 9px;
  margin: 0 auto 18px;
  display: flex;
}

.building-switch > * {
  color: #5d6470;
  background: #fff;
  border: 1px solid #e1dbe6;
  border-radius: 999px;
  padding: 10px 17px;
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 4px 14px #2b1a370d;
}

.building-switch .active {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}

.building-switch a:hover {
  color: var(--purple);
  border-color: #bda9cb;
}

.house-stage {
  aspect-ratio: 1.6;
  background: #dfe4e7;
  border: 10px solid #fff;
  border-radius: 27px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 65px #2b1a3724;
}

.house-stage > img {
  object-fit: cover;
}

.house-stage-shade {
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(#180e2270, #0000 27% 72%, #180e2224);
  position: absolute;
  inset: 0;
}

.house-stage-intro {
  z-index: 3;
  color: #fff;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background: #1e1129a8;
  border: 1px solid #ffffff59;
  border-radius: 14px;
  gap: 3px;
  padding: 12px 15px;
  display: grid;
  position: absolute;
  top: 22px;
  left: 24px;
  box-shadow: 0 8px 25px #140c1a2e;
}

.house-stage-intro > span {
  color: #9ee4df;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 8px;
  font-weight: 900;
}

.house-stage-intro > strong {
  font-size: 12px;
  font-weight: 650;
}

.house-stage-intro b {
  background: var(--orange);
  color: #1e1524;
  border-radius: 50%;
  place-items: center;
  width: 18px;
  height: 18px;
  margin: 0 2px;
  font-size: 14px;
  display: inline-grid;
}

.product-hotspot {
  z-index: 4;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 8px;
  padding: 0;
  display: flex;
  position: absolute;
  transform: translate(-50%, -50%);
}

.product-hotspot > span {
  background: var(--orange);
  color: #24172e;
  border: 4px solid #fffffff2;
  border-radius: 50%;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 26px;
  font-weight: 850;
  line-height: 1;
  transition: all .2s;
  display: grid;
  box-shadow: 0 7px 24px #1e142761;
}

.product-hotspot > span:after {
  content: "";
  border: 1px solid #eb7137cc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: 2.2s ease-out infinite hotspot-pulse;
  position: absolute;
}

.product-hotspot em {
  opacity: 0;
  color: var(--purple);
  white-space: nowrap;
  background: #fffffff5;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  transition: all .2s;
  transform: translateX(-4px);
  box-shadow: 0 6px 18px #1f14272e;
}

.product-hotspot:hover > span, .product-hotspot:focus-visible > span, .product-hotspot.active > span {
  background: #ff8a4e;
  transform: scale(1.1);
}

.product-hotspot:hover em, .product-hotspot:focus-visible em, .product-hotspot.active em {
  opacity: 1;
  transform: translateX(0);
}

.product-hotspot:focus-visible {
  outline: 0;
}

.product-hotspot:focus-visible > span {
  outline-offset: 3px;
  outline: 3px solid #fff;
}

@keyframes hotspot-pulse {
  0% {
    opacity: .9;
    transform: scale(.85);
  }

  75%, 100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.house-product-card {
  z-index: 8;
  width: min(375px, 100% - 48px);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #fffffff7;
  border: 1px solid #fff9;
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 26px 70px #190e225c;
}

.house-card-desktop {
  position: absolute;
  top: 22px;
}

.house-card-desktop.card-left {
  left: 22px;
}

.house-card-desktop.card-right {
  right: 22px;
}

.house-card-close {
  z-index: 2;
  width: 30px;
  height: 30px;
  color: var(--purple);
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 50%;
  place-items: center;
  font-size: 21px;
  line-height: 1;
  display: grid;
  position: absolute;
  top: 18px;
  right: 18px;
  box-shadow: 0 4px 13px #1e14272e;
}

.house-card-image {
  aspect-ratio: 1.75;
  background: #f0eef2;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.house-card-image img {
  object-fit: cover;
}

.house-card-copy {
  padding: 18px 15px 14px;
}

.house-card-copy > span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 8px;
  font-weight: 900;
}

.house-card-copy strong {
  color: var(--ink);
  letter-spacing: -.035em;
  margin: 8px 0 7px;
  font-size: 23px;
  line-height: 1.16;
  display: block;
}

.house-card-copy p {
  color: var(--muted);
  margin: 0 0 17px;
  font-size: 12px;
  line-height: 1.55;
}

.house-card-copy a {
  background: var(--purple);
  color: #fff;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 11px 13px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
}

.house-card-copy a b {
  color: #93ded8;
}

.house-mobile-products, .house-card-mobile {
  display: none;
}

@media (max-width: 800px) {

  .building-switch {
    justify-content: flex-start;
    padding-bottom: 3px;
    overflow-x: auto;
  }

  .building-switch > * {
    white-space: nowrap;
  }

  .house-stage {
    aspect-ratio: 1.18;
    border-width: 6px;
    border-radius: 20px;
  }

  .house-stage > img {
    object-position: center;
  }

  .house-stage-intro {
    padding: 9px 11px;
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .house-stage-intro > strong {
    font-size: 10px;
  }

  .product-hotspot > span {
    border-width: 3px;
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .product-hotspot > span:after {
    width: 38px;
    height: 38px;
  }

  .product-hotspot em, .house-card-desktop {
    display: none;
  }

  .house-mobile-products {
    gap: 7px;
    padding: 10px 0 0;
    display: flex;
    overflow-x: auto;
  }

  .house-mobile-products button {
    color: #535b67;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #e0d9e5;
    border-radius: 999px;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    font-size: 10px;
    font-weight: 750;
    display: flex;
  }

  .house-mobile-products button span {
    background: var(--orange);
    color: #24172e;
    border-radius: 50%;
    place-items: center;
    width: 20px;
    height: 20px;
    font-size: 14px;
    display: grid;
  }

  .house-mobile-products button.active {
    border-color: var(--purple);
    color: var(--purple);
    background: #f4eff8;
  }

  .house-card-mobile {
    grid-template-columns: .72fr 1.28fr;
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    display: grid;
    position: relative;
    box-shadow: 0 15px 40px #2b1a3729;
  }

  .house-card-mobile .house-card-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 210px;
  }

  .house-card-mobile .house-card-copy {
    padding: 18px 15px;
  }

  .house-card-mobile .house-card-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 540px) {
  .house-stage {
    aspect-ratio: 1.08;
  }

  .house-stage-intro > strong {
    max-width: 240px;
  }

  .house-card-mobile {
    grid-template-columns: 1fr;
  }

  .house-card-mobile .house-card-image {
    min-height: 190px;
  }

  .house-card-copy strong {
    font-size: 21px;
  }

  .product-hotspot > span {
    width: 31px;
    height: 31px;
    font-size: 18px;
  }

  .product-hotspot > span:after {
    width: 35px;
    height: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hotspot > span:after {
    animation: none;
  }
}

.house-card-image.contain {
  background: #fff;
}

.house-card-image.contain img {
  object-fit: contain;
  padding: 12px;
}

.hero-interactive {
  min-width: 0;
}

.hero-interactive .interactive-house {
  margin: 0;
}

.interactive-house.compact .house-stage {
  aspect-ratio: 1.34;
  border-width: 8px;
  border-radius: 24px;
}

.interactive-house.compact .house-stage-intro {
  padding: 9px 11px;
  top: 15px;
  left: 15px;
}

.interactive-house.compact .house-stage-intro > strong {
  font-size: 10px;
}

.interactive-house.compact .product-hotspot > span {
  border-width: 3px;
  width: 36px;
  height: 36px;
  font-size: 21px;
}

.interactive-house.compact .product-hotspot > span:after {
  width: 41px;
  height: 41px;
}

.interactive-house.compact .house-card-desktop {
  width: min(320px, 100% - 24px);
  padding: 8px;
  top: 12px;
}

.interactive-house.compact .house-card-desktop.card-left {
  left: 12px;
}

.interactive-house.compact .house-card-desktop.card-right {
  right: 12px;
}

.interactive-house.compact .house-card-copy {
  padding: 13px 12px 11px;
}

.interactive-house.compact .house-card-copy strong {
  font-size: 19px;
}

.interactive-house.compact .house-card-copy p {
  margin-bottom: 12px;
  font-size: 10px;
}

.interactive-house.compact .house-card-copy a {
  padding: 9px 11px;
  font-size: 10px;
}

.interactive-house.compact .house-card-close {
  width: 27px;
  height: 27px;
  top: 13px;
  right: 13px;
}

@media (max-width: 1000px) {
  .hero-interactive {
    max-width: 760px;
  }

  .interactive-house.compact .house-stage {
    aspect-ratio: 1.5;
  }
}

@media (max-width: 800px) {
  .hero-interactive {
    max-width: none;
  }

  .interactive-house.compact .house-stage {
    aspect-ratio: 1.16;
  }

  .interactive-house.compact .house-stage-intro {
    top: 10px;
    left: 10px;
  }

  .interactive-house.compact .product-hotspot > span {
    width: 31px;
    height: 31px;
    font-size: 18px;
  }

  .interactive-house.compact .product-hotspot > span:after {
    width: 35px;
    height: 35px;
  }
}

.proof-bar {
  background: linear-gradient(#f8f5fa, #fcfbfd);
  border: 0;
  padding: 34px 0 30px;
}

.proof-intro {
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 17px;
  display: flex;
}

.proof-intro > span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
  font-weight: 900;
}

.proof-intro > strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
}

.proof-bar .proof-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  display: grid;
}

.proof-grid article {
  background: #fff;
  border: 1px solid #ebe6ee;
  border-radius: 18px;
  flex-direction: column;
  gap: 20px;
  min-height: 176px;
  padding: 18px;
  transition: all .2s;
  display: flex;
  box-shadow: 0 7px 24px #2b1a370f;
}

.proof-grid article:first-child {
  background: linear-gradient(145deg, #fff, #f2f5fb);
}

.proof-grid article:nth-child(5) {
  background: linear-gradient(145deg, #fff, #fff5ed);
}

.proof-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 32px #2b1a371c;
}

.proof-bar .proof-grid article > div {
  box-shadow: none !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  align-content: start !important;
  gap: 3px !important;
  padding: 0 !important;
  display: grid !important;
}

.proof-bar .proof-grid article > div:last-child > span {
  color: var(--teal);
  margin: 0 0 2px;
  font-size: 8px;
  font-weight: 900;
  display: block;
}

.proof-grid article strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.proof-grid article small {
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.45;
}

.proof-bar .proof-grid .proof-icon {
  width: 46px;
  height: 46px;
  color: var(--purple);
  box-shadow: none !important;
  background: #f2edf6 !important;
  border-radius: 14px !important;
  place-items: center !important;
  padding: 0 !important;
  display: grid !important;
}

.proof-bar .proof-grid .proof-icon-france {
  background: #eef3fb !important;
}

.proof-bar .proof-grid .proof-icon-aid {
  background: #fff0e8 !important;
}

.proof-svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 25px;
  height: 25px;
}

.proof-flag {
  border-radius: 3px;
  width: 31px;
  height: 22px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 3px 8px #19233c24;
}

.proof-flag i {
  background: #18397d;
  flex: 1;
}

.proof-flag i:nth-child(2) {
  background: #fff;
}

.proof-flag i:nth-child(3) {
  background: #e13a3a;
}

.proof-percent {
  color: var(--orange);
  align-items: flex-start;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
  display: flex;
}

.proof-percent small {
  color: var(--orange);
  font-size: 9px;
}

@media (max-width: 1050px) {
  .proof-bar .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-grid article {
    flex-direction: row;
    align-items: flex-start;
    min-height: 145px;
  }

  .proof-bar .proof-grid .proof-icon {
    flex: 0 0 46px;
  }
}

@media (max-width: 650px) {
  .proof-bar {
    padding: 28px 0;
  }

  .proof-intro {
    display: grid;
  }

  .proof-intro > strong {
    font-size: 17px;
  }

  .proof-bar .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid article {
    gap: 14px;
    min-height: 178px;
    padding: 15px;
    display: grid;
  }

  .proof-grid article strong {
    font-size: 13px;
  }

  .proof-grid article small {
    font-size: 9px;
  }
}

.proof-bar .proof-grid .proof-flag {
  border-radius: 3px !important;
  width: 31px !important;
  height: 22px !important;
  margin: 0 !important;
  display: flex !important;
  overflow: hidden !important;
  box-shadow: 0 3px 8px #19233c24 !important;
}

.proof-bar .proof-grid .proof-flag i {
  background: #18397d !important;
  flex: 1 !important;
  height: 100% !important;
  display: block !important;
}

.proof-bar .proof-grid .proof-flag i:nth-child(2) {
  background: #fff !important;
}

.proof-bar .proof-grid .proof-flag i:nth-child(3) {
  background: #e13a3a !important;
}

.proof-bar .proof-grid .proof-percent {
  color: var(--orange) !important;
  align-items: flex-start !important;
  margin: 0 !important;
  font-size: 17px !important;
  font-weight: 850 !important;
  display: flex !important;
}

.proof-bar .proof-grid .proof-percent small {
  color: var(--orange) !important;
  font-size: 9px !important;
}

.service-hero .hero-copy > p {
  max-width: 600px;
}

.service-block {
  background: #fff;
  padding: 100px 0;
}

.service-block-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 72px;
  display: grid;
}

.service-photo {
  background: #eee;
  border-radius: 24px;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 55px #2b1a371f;
}

.service-photo > span {
  z-index: 2;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #fffffff0;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 8px;
  font-weight: 900;
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.service-copy h2 {
  max-width: 650px;
  color: var(--ink);
  letter-spacing: -.045em;
  margin: 0 0 20px;
  font-size: clamp(36px, 3.5vw, 49px);
  line-height: 1.1;
}

.service-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-points {
  margin: 30px 0;
  display: grid;
}

.service-points article {
  border-top: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 19px 0;
  display: grid;
}

.service-points article > b {
  width: 36px;
  height: 36px;
  color: var(--purple);
  background: #efe8f4;
  border-radius: 50%;
  place-items: center;
  font-size: 9px;
  display: grid;
}

.service-points h3 {
  color: var(--ink);
  margin: 0 0 5px;
  font-size: 18px;
}

.service-points p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.home-aid {
  padding: 70px 0;
}

.home-aid .aid-card a:not(.button) {
  color: var(--purple);
  margin-top: 13px;
  font-size: 12px;
  font-weight: 800;
  display: inline-block;
}

.home-project-steps {
  background: #f6f2f8;
  padding: 100px 0;
}

.home-project-steps .section-head > p {
  max-width: 330px;
  color: var(--muted);
}

.home-project-steps ol {
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.home-project-steps li {
  background: #fff;
  border-radius: 20px;
  grid-template-columns: 52px 1fr;
  gap: 19px;
  min-height: 205px;
  padding: 30px;
  display: grid;
  box-shadow: 0 7px 25px #2b1a370f;
}

.home-project-steps li > span {
  background: var(--purple);
  color: #fff;
  border-radius: 14px;
  place-items: center;
  width: 46px;
  height: 46px;
  font-size: 17px;
  font-weight: 800;
  display: grid;
}

.home-project-steps li:nth-child(2) > span, .home-project-steps li:nth-child(4) > span {
  background: var(--teal);
}

.home-project-steps h3 {
  color: var(--ink);
  margin: 4px 0 9px;
  font-size: 22px;
  line-height: 1.25;
}

.home-project-steps p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.home-products {
  background: #fff;
  padding: 100px 0;
}

.home-products .section-head > div {
  max-width: 780px;
}

.home-product-grid {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  display: grid;
}

.home-product-grid > a {
  background: #fff;
  border: 1px solid #ebe5ee;
  border-radius: 22px;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: .85fr 1.15fr;
  column-gap: 22px;
  min-height: 265px;
  padding: 10px 24px 22px 10px;
  transition: all .2s;
  display: grid;
  overflow: hidden;
  box-shadow: 0 8px 28px #2b1a3712;
}

.home-product-grid > a:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px #2b1a371f;
}

.home-product-grid > a > div {
  background: #f3f3f3;
  border-radius: 14px;
  grid-row: 1 / -1;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.home-product-grid > a > span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  align-self: end;
  margin-top: 18px;
  font-size: 8px;
  font-weight: 900;
}

.home-product-grid h3 {
  color: var(--ink);
  margin: 7px 0;
  font-size: 24px;
  line-height: 1.18;
}

.home-product-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
}

.home-product-grid b {
  color: var(--purple);
  align-self: end;
  font-size: 11px;
}

.home-product-main {
  grid-row: span 2;
  grid-template-rows: 1fr auto auto auto auto !important;
  grid-template-columns: 1fr !important;
  padding: 10px 10px 26px !important;
}

.home-product-main > div {
  grid-row: auto !important;
  min-height: 500px !important;
}

.home-product-main > span, .home-product-main h3, .home-product-main p, .home-product-main b {
  margin-left: 18px;
  margin-right: 18px;
}

.home-product-main h3 {
  font-size: 32px;
}

.why-forteos {
  color: #fff;
  background: linear-gradient(145deg, #261532, #4a2366);
  padding: 100px 0;
}

.why-forteos .section-head {
  max-width: 900px;
}

.why-forteos .section-head h2 {
  color: #fff;
}

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

.why-grid article {
  background: #ffffff0f;
  border: 1px solid #ffffff21;
  border-radius: 18px;
  min-height: 240px;
  padding: 26px;
}

.why-grid article > span {
  color: #8de0da;
  background: #ffffff1f;
  border-radius: 14px;
  place-items: center;
  width: 45px;
  height: 45px;
  font-size: 12px;
  font-weight: 850;
  display: grid;
}

.why-grid h3 {
  margin: 46px 0 10px;
  font-size: 21px;
}

.why-grid p {
  color: #d5cbdc;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.compact-field {
  grid-template-rows: 460px !important;
  grid-template-columns: 1.4fr .8fr .8fr !important;
}

.compact-field .doc-large {
  grid-area: auto !important;
}

.compact-field figure {
  min-height: 460px;
}

@media (max-width: 1000px) {
  .service-block-grid {
    grid-template-columns: 1fr;
  }

  .service-photo {
    min-height: 520px;
  }

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

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

  .home-product-main {
    grid-row: auto;
  }

  .home-product-main > div {
    min-height: 430px !important;
  }

  .compact-field {
    grid-template-rows: 420px 300px !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .compact-field .doc-large {
    grid-column: span 2 !important;
  }

  .compact-field figure {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .service-block, .home-project-steps, .home-products, .why-forteos {
    padding: 68px 0;
  }

  .service-photo {
    min-height: 400px;
  }

  .service-copy h2 {
    font-size: 33px;
  }

  .home-project-steps ol {
    grid-template-columns: 1fr;
  }

  .home-project-steps li {
    min-height: 190px;
    padding: 23px;
  }

  .home-product-grid > a {
    grid-template-columns: 1fr;
    padding: 9px 9px 23px;
  }

  .home-product-grid > a > div {
    grid-row: auto;
    min-height: 230px;
  }

  .home-product-grid > a > span, .home-product-grid h3, .home-product-grid p, .home-product-grid b {
    margin-left: 14px;
    margin-right: 14px;
  }

  .home-product-main > div {
    min-height: 330px !important;
  }

  .home-product-main h3 {
    font-size: 27px;
  }

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

  .why-grid article {
    min-height: 205px;
  }

  .why-grid h3 {
    margin-top: 35px;
  }

  .compact-field {
    grid-template-rows: repeat(3, 330px) !important;
    grid-template-columns: 1fr !important;
  }

  .compact-field .doc-large {
    grid-column: auto !important;
  }

  .compact-field figure {
    min-height: 330px;
  }
}