:root {
  --ink: #1e1e1e;
  --red: #93202c;
  --blue: #222093;
  --muted: #f4f4f4;
  --container: 1280px;
}

@font-face {
  font-family: "Rockwell Condensed";
  src:
    local("Rockwell Condensed Bold"),
    local("Rockwell Condensed");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  background: var(--ink);
  color: #fff;
}

.topbar {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  height: 60px;
}

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

.user-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.user-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.hero-card h1 a,
.news-card h2 a,
.news-card h3 a,
.wide-card h3 a,
.timeline-day__text a {
  color: inherit;
  text-decoration: none;
}

.timeline-day__text a:hover,
.timeline-day__text a:focus-visible {
  color: var(--red);
}

/* .user-icon {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 0;
  position: relative;
}

.user-icon::before,
.user-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
  border-radius: 999px;
}

.user-icon::before {
  top: 4px;
  width: 7px;
  height: 7px;
}

.user-icon::after {
  bottom: 4px;
  width: 13px;
  height: 7px;
} */

.signup {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  padding: 0 24px;
  font-size: 16px;
}

.menu {
  min-height: 56px;
  display: flex;
  justify-content: center;
  gap: 33px;
  padding: 15px 24px;
  background: var(--red);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  overflow-x: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.lead {
  display: grid;
  grid-template-columns: minmax(0, 630px) minmax(0, 305px) minmax(0, 305px);
  gap: 20px;
  align-items: start;
  padding-top: 60px;
}

.hero-card,
.lead-stack,
.news-card,
.wide-card {
  min-width: 0;
}

.hero-card {
  display: grid;
  gap: 16px;
}

.hero-card .copy {
  display: grid;
  gap: 16px;
}

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

.hero-card h1 {
  font-size: clamp(28px, 2.25vw, 32px);
  line-height: 1.12;
  font-weight: 600;
}

.hero-card p {
  font-size: 20px;
  line-height: 115%;
}

.hero-card img {
  aspect-ratio: 630 / 410;
}

.lead-stack {
  display: grid;
  gap: 21px;
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.news-card img {
  width: 100%;
  height: 194px;
  flex: 0 0 194px;
  aspect-ratio: 305 / 194;
  object-fit: cover;
  display: block;
}

.news-card h2,
.news-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 600;
}
.news-card h3 {
    line-height: 117%;
}
.dossier {
  /* border-top: 4px solid var(--red); */
  
}

.dossier h2 {
font-weight: 600;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-transform: uppercase;
margin-top: -14px;
border-bottom: 4px solid var(--red);
padding-bottom: 3px;
margin-bottom: 16px;
}

.timeline-day {
  font-size: 16px;
  line-height: 1.24;
}
.timeline-day:not(:last-child) {
  margin-bottom: 17px;
}
.timeline-day__block {
  display: flex;
  justify-content: space-between;
}
.timeline-day__block:not(:last-child) {
  margin-bottom: 11px;
}
.timeline-day__time {
  color: var(--red);
    margin-right: 15px;
font-weight: 600;
font-size: 16px;
line-height: 100%;
text-transform: uppercase;

}

.timeline-day span {
  background: var(--red);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
font-weight: 400;
line-height: 100%;
text-transform: uppercase;

  margin-bottom: 11px;
  display: inline-block;
}
.timeline-day__text {
font-weight: 700;
font-size: 16px;
line-height: 110%;
vertical-align: bottom;

}

.timeline-day strong {
  color: var(--red);
  margin-right: 10px;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 24px;
}

.feature-strip {
  color: #fff;
  position: relative;
  padding: 43px 0 40px;
}

.feature-strip.red {
  background: var(--red);
}

.feature-strip.blue {
  background: var(--blue);
}

.feature-strip .container {
  position: relative;
}

.section-title {
  margin-bottom: 40px;
font-weight: 600;
font-size: 40px;
line-height: 100%;
letter-spacing: 0%;
text-transform: uppercase;
}

.section-title.dark {
  color: var(--ink);
   /* margin-bottom: 28px; */
}

.news-slider {
  overflow: hidden;
  width: 100%;
}

.news-slider .swiper-wrapper {
  align-items: flex-start;
}

.news-slider .swiper-slide {
  height: auto;
}

.news-card.light h3 {
  color: #fff;
}

.slider-arrow {
  position: absolute;
  top: 138px;
  z-index: 2;
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.slider-arrow:hover {
  transform: scale(1.04);
}

.slider-arrow.swiper-button-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.slider-arrow.prev {
  left: -40px;
}

.slider-arrow.next {
  right: -40px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
}

.slider-dots .swiper-pagination-bullet {
  display: block;
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  margin: 0;
  opacity: 1;
  transition: width .2s ease, background .2s ease;
}

.slider-dots .swiper-pagination-bullet-active {
  width: 40px;
  background: #fff;
}

.section {
  padding: 58px 0 48px;
}
.section1 {
  padding: 58px 0 66px;
}
.section2 {
  padding: 55px 0 99px;
}
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 955px) minmax(0, 305px);
  gap: 20px;
  margin-bottom: 25px;
}

.wide-card {
  display: grid;
  grid-template-columns: minmax(0, 522px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.wide-card img {
  aspect-ratio: 522 / 294;
}

.wide-card div {
  display: grid;
  gap: 16px;
}

.wide-card h3 {
  font-size: 32px;
  line-height: 120%;
  font-weight: 600;
}

.wide-card p {
  font-size: 20px;
  line-height: 115%;
}

.no-pad {
  padding: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px 20px;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 27px 0 8px;
}



.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.red-logo {
  color: var(--red);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Roboto Flex", "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

address {
  max-width: 520px;
  font-style: normal;
  font-size: 16px;
  /* line-height: 1.45; */
}

address a {
  text-decoration: underline;
}

.copyright {
  margin-top: 25px;
  color: #d9d9d9;
  text-align: center;
font-weight: 300;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: capitalize;
}

.post-layout {
  padding-top: 34px;
  padding-bottom: 102px;
}

.post-article {
  display: grid;
  /* gap: 24px; */
  min-width: 0;
}

.post-top {
  display: grid;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 955px;
}

.post-main-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.post-head {
  display: grid;
  gap: 8px;
}

.blue {
  background-color: #68ADFD;
}
.green {
  background-color: #00B10F;
}
.gold {
  background-color: #A98414;
}
.red {
  background-color: #93202C;
}
.dark-blue {
background-color: #222093;
}
.turq {
  background-color: #209378;
}
.dark-green {
  background-color: #02421C;
}
.violet {
  background-color: #9001A3;
}



.category-chip {
  width: max-content;
  color: #fff;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.post-head h1 {
  max-width: 955px;
  font-size: 32px;
  line-height: 1.16;
  font-weight: 700;
}

.byline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a4a4a4;
  font-size: 16px;
  line-height: 1.2;
}

.byline strong {
  font-weight: 700;
}

.byline span {
  width: 1px;
  height: 17px;
  background: #a4a4a4;
}

.byline time {
  font-weight: 300;
}

.post-intro {
  max-width: 955px;
  font-size: 24px;
  line-height: 1.16;
}

.post-image {
  width: 100%;
  aspect-ratio: 955 / 474;
}

.post-body {
  width: min(630px, 100%);
  display: grid;
  gap: 20px;
  font-size: 20px;
  line-height: 1.16;
}

.post-cta {
  position: relative;
  overflow: hidden;
  width: min(630px, 100%);
  min-height: 234px;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 32px;
  padding: 40px 24px;
  background: url("assets/post-cta.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
  margin: 26px 0 24px;
}

.post-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 190px;
  height: 70px;
  background: linear-gradient(90deg, #001774 0%, #0433ad 72%, rgba(4, 51, 173, 0) 100%);
  pointer-events: none;
}

.post-cta > * {
  position: relative;
  z-index: 1;
}

.post-cta h2 {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.post-cta p {
  font-size: 20px;
  line-height: 1.2;
}

.post-cta a {
  width: min(401px, 100%);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  padding: 0 24px;
  color: #fff;
  font-size: 16px;
}

.post-sidebar {
  flex: 0 0 305px;
  /* max-height: 550px; */
  overflow: hidden;
  margin-top: 124px;
}

.post-sidebar h2 {
  border-bottom: 4px solid var(--red);
  padding-bottom: 2px;
  margin-bottom: 13px;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-layout {
  padding-top: 56px;
  padding-bottom: 107px;
}

.pricing-intro {
  width: min(738px, 100%);
  margin: 0 auto 33px;
  color: var(--ink);
  text-align: center;
}

.pricing-intro h1 {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.16;
  font-weight: 700;
}

.pricing-intro p {
  font-size: 20px;
  line-height: 1.16;
}

.pricing-table {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .05);
}

.pricing-row {
  display: grid;
  grid-template-columns: 320px repeat(3, minmax(0, 1fr));
  min-width: 980px;
  border-bottom: 1px solid #e5e7eb;
}

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

.pricing-row.alt .feature-cell,
.pricing-row.alt .plan-cell:not(.recommended) {
  background: #f9fafb;
}

.feature-cell,
.plan-cell {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 24px;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.feature-cell {
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.plan-cell {
  justify-content: center;
  border-left: 1px solid #e5e7eb;
  text-align: center;
}

.plan-cell.recommended {
  background: #f5f3ff;
  border-left-color: var(--blue);
}

.pricing-header .feature-cell,
.pricing-header .plan-cell {
  min-height: 200px;
}

.pricing-header .plan-cell {
  flex-direction: column;
  gap: 12px;
}

.pricing-header h2 {
  color: #111827;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.pricing-header .recommended h2,
.pricing-header .recommended .price,
.pricing-header .recommended .price span {
  color: #111827;
}

.price {
  color: #111827;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 800;
}

.price span {
  color: #4b5563;
  font-size: 14px;
  font-weight: 400;
}

.badge {
  border-radius: 999px;
  background: var(--blue);
  padding: 4px 10px;
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.mark {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.mark.yes {
  color: #00a76f;
}

.mark.no {
  color: #9ca3af;
}

.pricing-actions .feature-cell,
.pricing-actions .plan-cell {
  min-height: 105px;
}

.plan-button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.plan-button.secondary {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
}

.plan-button.primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.pricing-mobile-cards {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.subscription-modal[hidden] {
  display: none;
}

.subscription-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.subscription-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .64);
}

.subscription-modal__dialog {
  position: relative;
  z-index: 1;
  width: 602px;
  border-radius: 16px;
  background: #fff;
  padding: 86px 40px 40px;
  color: #111827;
}

.subscription-modal__close {
  position: absolute;
  top: 38px;
    right: 36px;
    width: 29px;
    height: 29px;
  border: 0;
  background: transparent;
  color: #b9b9b9;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.subscription-modal__dialog h2 {
  max-width: 410px;
  margin: 0 auto 24px;
  color: #111827;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}

.subscription-modal__dialog h2 span {
  color: var(--red);
}

.subscription-form {
  width: 522px;
  margin: 0 auto;
}

.subscription-form label {
  display: block;
  margin-bottom: 16px;
  color: #111827;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}
.subscription-form label:last-of-type {
    margin-bottom: 33px;
}
.subscription-form input {
  width: 100%;
  height: 53px;
  margin-top: 8px;
  border: 1px solid #efc7c7;
  border-radius: 6px;
  padding: 0 14px;
  color: #111827;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.subscription-form input:focus {
  border-color: var(--red);
}

.subscription-form input::placeholder {
  color: #c3c3c3;
}

.email-field {
  position: relative;
  display: block;
  margin-top: 8px;
}

.email-field input {
  margin-top: 0;
  padding-left: 50px;
}

.email-field__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url("./assets/ci_mail.svg") center / contain no-repeat;
  pointer-events: none;
}

.subscription-submit {
  min-width: 245px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.subscription-submit:disabled {
  opacity: .7;
  cursor: wait;
}

.subscription-modal.is-success #subscriptionModalTitle {
  display: none;
}

.subscription-success[hidden] {
  display: none;
}

.subscription-success {
  /* width: min(360px, 100%); */
  margin: 0 auto;
  color: #111827;
  font-size: 14px;
  line-height: 1.2;
}

.subscription-success h2 {
  max-width: none;
  margin: 0 0 28px;
  color: #111827;
  font-size: 32px;
  line-height: 1.16;
  font-weight: 800;
  text-align: center;
}

.subscription-success p {
  margin-bottom: 18px;
  font-size: 20px;
}
.subscription-success p span {
  font-weight: 700;
}

.login-modal[hidden] {
  display: none;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .68);
}

.login-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(602px, 100%);
  min-height: 390px;
  border: 1px solid #2196f3;
  border-radius: 12px;
  background: #fff;
  padding: 80px 40px 40px;
  color: #111827;
}

.login-modal__close {
  position: absolute;
  top: 43px;
  right: 43px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #c4c4c4;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.login-modal__dialog h2 {
  margin: 0 0 27px;
  color: #1e1e1e;
  font-size: 32px;
  line-height: 1.16;
  font-weight: 700;
  text-align: center;
}

.login-form {
  width: 100%;
  margin: 0 auto;
}

.login-form label {
  display: block;
  margin-bottom: 24px;
}

.login-form input {
  width: 100%;
  height: 56px;
  border: 1px solid #efc7c7;
  border-radius: 6px;
  padding: 0 16px;
  color: #111827;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.login-form input:focus {
  border-color: var(--red);
}

.login-form input::placeholder {
  color: #c3c3c3;
}

.login-form .email-field input {
  padding-left: 46px;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 46px;
}

.password-field__icon {
  position: absolute;
  right: 19px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url("./assets/eye.png") center / contain no-repeat;
  pointer-events: none;
}

.login-submit {
  width: min(305px, 100%);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.login-error {
  margin: 14px 0 0;
  color: var(--red);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.login-error[hidden] {
  display: none;
}

.pricing-table:has(.pricing-row .plan-cell:nth-child(2):hover) .pricing-row .plan-cell:nth-child(2),
.pricing-table:has(.pricing-row .plan-cell:nth-child(3):hover) .pricing-row .plan-cell:nth-child(3),
.pricing-table:has(.pricing-row .plan-cell:nth-child(4):hover) .pricing-row .plan-cell:nth-child(4) {
  background: var(--blue);
  border-left-color: var(--blue);
  color: #fff;
}

.pricing-table:has(.pricing-row .plan-cell:nth-child(2):hover) .pricing-row .plan-cell:nth-child(2) h2,
.pricing-table:has(.pricing-row .plan-cell:nth-child(2):hover) .pricing-row .plan-cell:nth-child(2) .price,
.pricing-table:has(.pricing-row .plan-cell:nth-child(2):hover) .pricing-row .plan-cell:nth-child(2) .price span,
.pricing-table:has(.pricing-row .plan-cell:nth-child(3):hover) .pricing-row .plan-cell:nth-child(3) h2,
.pricing-table:has(.pricing-row .plan-cell:nth-child(3):hover) .pricing-row .plan-cell:nth-child(3) .price,
.pricing-table:has(.pricing-row .plan-cell:nth-child(3):hover) .pricing-row .plan-cell:nth-child(3) .price span,
.pricing-table:has(.pricing-row .plan-cell:nth-child(4):hover) .pricing-row .plan-cell:nth-child(4) h2,
.pricing-table:has(.pricing-row .plan-cell:nth-child(4):hover) .pricing-row .plan-cell:nth-child(4) .price,
.pricing-table:has(.pricing-row .plan-cell:nth-child(4):hover) .pricing-row .plan-cell:nth-child(4) .price span {
  color: #fff;
}

.pricing-table:has(.pricing-row .plan-cell:nth-child(2):hover) .pricing-row .plan-cell:nth-child(2) .plan-button,
.pricing-table:has(.pricing-row .plan-cell:nth-child(3):hover) .pricing-row .plan-cell:nth-child(3) .plan-button,
.pricing-table:has(.pricing-row .plan-cell:nth-child(4):hover) .pricing-row .plan-cell:nth-child(4) .plan-button {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}

.category-layout {
  padding-top: 56px;
  padding-bottom: 100px;
}

.category-head {
  width: min(760px, 100%);
  margin-bottom: 40px;
}

.category-head h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
}

.category-head p {
  color: #4b5563;
  font-size: 20px;
  line-height: 1.2;
}

.category-posts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px 20px;
}

.about-layout {
  padding-top: 56px;
  padding-bottom: 100px;
}

.about-page .about-layout h1 {
  margin-bottom: 25px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.16;
  font-weight: 700;
  text-align: center;
}

.about-page .about-layout h1 span {
  text-transform: uppercase;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 630px));
  gap: 20px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 20px;
  padding-top: 47px;
  color: var(--ink);
  font-size: 20px;
  line-height: 119%;
}

.about-content img {
  aspect-ratio: 630 / 420;
}

.policy-layout {
  padding-top: 56px;
  padding-bottom: 100px;
}

.policy-content {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.policy-content h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.16;
  font-weight: 800;
  text-align: center;
}

.policy-meta {
  margin-bottom: 34px;
  color: #5d6470;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.policy-content h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
}

.policy-content p {
  margin-bottom: 16px;
}

.policy-content ul {
  margin: 0 0 18px;
  padding-left: 24px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  color: var(--red);
}

@media (max-width: 1100px) {
  .lead {
    grid-template-columns: 1.4fr 1fr;
  }

  .dossier {
    grid-column: 1 / -1;
  }

  .pricing-layout {
    padding-top: 36px;
  }

  .pricing-table {
    overflow-x: auto;
  }

  .about-content {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-content > :nth-child(1) {
        order: 2;
    }

    .about-content > :nth-child(2) {
        order: 1;
    }

  .about-copy {
    padding-top: 0;
  }

  .compact-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .wide-card {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }
}
@media (max-width: 991px) {
  .menu {
    display: none;
  }
  .dossier {
    display: none;
  }
  .news-card h3 {
    line-height: 125%;
  }
  .section1 {
    padding: 58px 0 18px;
  }
  .red-logo img {
    width: 136px;
  }
  
}
@media (max-width: 767.98px) {
  .post-sidebar {
    display: none;
  }
}
@media (min-width: 721px) and (max-width: 900px) {
  .home-page .container {
    width: min(var(--container), calc(100% - 80px));
  }
.container {
  width: min(var(--container), calc(100% - 80px));
  margin-inline: auto;
}
  .home-page .lead {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 72px;
  }

  .home-page .dossier {
    display: none;
  }

  .home-page .hero-card h1 {
    font-size: 28px;
  }
.about-content img {
  
  height: 330px;
}
  .home-page .hero-card p {
    font-size: 18px;
    line-height: 1.18;
  }

  .home-page .hero-card img {
    aspect-ratio: 334 / 291;
  }

  .home-page .news-card img,
  .home-page .wide-card img {
    height: 188px;
    flex-basis: 188px;
    aspect-ratio: 334 / 188;
  }

  .home-page .news-card h2,
  .home-page .news-card h3 {
    font-size: 22px;
  }

  .home-page .compact-grid,
  .home-page .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .home-page .compact-grid {
    padding-top: 40px;
    padding-bottom: 54px;
  }
.home-page .compact-grid:last-of-type {
    padding: 3px 0 40px;
  }

  .home-page .section-title {
    margin-bottom: 38px;
    font-size: 32px;
  }

  .home-page .news-slider {
    height: 282px;
  }

  .home-page .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 141px;
    width: 50px;
    height: 50px;
    padding-bottom: 4px;
    font-size: 34px;
  }

  .home-page .slider-arrow.prev {
    left: -20px;
  }

  .home-page .slider-arrow.next {
    right: -20px;
  }

  .home-page .slider-dots {
    padding-top: 37px;
  }

  .home-page .section {
    padding: 56px 0 48px;
  }

  .home-page .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 21px;
  }

  .home-page .wide-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-page .wide-card h3 {
    font-size: 22px;
  }

  .home-page .wide-card p {
    display: none;
  }

  .footer {
    padding-top: 26px;
  }

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

  .footer-top {
    align-items: center;
  }

  .footer .logo {
    font-size: 40px;
  }
}


@media (min-width: 721px) and (max-width: 900px) {
  .post-page .container {
    width: min(var(--container), calc(100% - 80px));
  }

  .post-page .menu {
    display: none;
  }

  .post-page .post-layout {
    padding-top: 34px;
    padding-bottom: 99px;
  }

  .post-page .post-main-row {
    gap: 16px;
  }

  .post-page .post-top {
    flex: 1 1 auto;
    max-width: none;
  }

  .post-page .post-sidebar {
    flex: 0 0 220px;
    max-height: none;
    overflow: visible;
    margin-top: 16px;
  }
  .post {
    margin-top: 2px !important;
  }

  .post-page .post-head,
  .post-page .post-intro,
  .post-page .post-image {
    width: 100%;
    max-width: none;
  }

  .post-page .post-head h1 {
    font-size: 28px;
  }

  .post-page .post-intro {
    font-size: 20px;
    line-height: 115%;
  }

  .post-page .post-image {
    aspect-ratio: 410 / 276;
  }

  .post-page .post-body{
    width: 100%;
    max-width: 100%;
  }
  .post-page .post-cta {
   
  width: 452px;
  text-align: center;
 margin: 26px auto 24px;
  height: 224px;
  }
  .about-content {
    gap: 25px;
  }
 .about-page .about-layout h1 {
    margin-bottom: 37px;
    font-size: 28px;
  }
  .about-copy {
font-size: 18px;

  }
.about-layout {
padding-top: 36px;
    padding-bottom: 100px;

}

.pricing-intro h1 {
  font-size: 28px;
}
.pricing-intro p {
  font-size: 18px;
}
  .post-page .post-body {
    gap: 18px;
    font-size: 16px;
    line-height: 1.2;
  }

  .post-page .post-cta {
    min-height: 184px;
    padding: 40px 92px;
  }

  .post-page .post-cta h2 {
    font-size: 24px;
  }

  .post-page .post-cta p {
    font-size: 16px;
  }

  .post-page .post-sidebar h2 {
    font-size: 18px;
  }
.byline {
  font-size: 14px;
}
  .post-page .timeline-day {
    gap: 6px;
    padding: 8px 0;
    font-size: 12px;
  }
.category-chip {
  font-size: 14px;
}
.post-sidebar h2 {
margin-bottom: 10px;
}
/* .post-sidebar {
  display: none;
} */
  .post-page .timeline-day span {
    font-size: 12px;
  }
  .timeline-day__block:not(:last-child) {
    margin-bottom: 9px;
  }
  .timeline-day__text {
  max-width: 163px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.timeline-day:not(:last-child){
  margin-bottom: 0px;
}
  .post-page .timeline-day strong {
    margin-right: 8px;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
  .post-page .post-body,
  .post-page .post-cta {
    /* width: 100%; */
    max-width: 100%;
  }

  .post-page .post-image {
    margin-inline: auto;
    height: 275px;
    margin-bottom: 26px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-page .pricing-layout {
    width: min(var(--container), calc(100% - 80px));
  }

  .pricing-page .pricing-intro {
    
    margin-bottom: 40px;
  }
  .pricing-header .plan-cell {
  
  gap: 15px;
}

  .pricing-page .pricing-intro h1 {
    font-size: 28px;
  }

  .pricing-page .pricing-intro p {
    font-size: 18px;
  }

  .pricing-page .pricing-table {
    overflow: hidden;
  }

  .pricing-page .pricing-row {
    grid-template-columns: 210px repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .pricing-page .feature-cell {
    font-size: 13px;
    min-height: 60px;
    padding: 16px;
  }

  .pricing-page .pricing-row:not(.pricing-header):not(.pricing-actions) .plan-cell {
    min-height: 60px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .pricing-page .pricing-header .feature-cell,
  .pricing-page .pricing-header .plan-cell {
    min-height: 150px;
    padding: 25px 12px;
  } 
 
  .pricing-page .pricing-header h2 {
    font-size: 18px;
  }

  .pricing-page .price {
    font-size: 30px;
  }

  .pricing-page .price span {
    font-size: 12px;
  }

  .pricing-page .badge {
    padding: 3px 8px;
    font-size: 9px;
  }

  .pricing-page .pricing-actions .feature-cell,
  .pricing-page .pricing-actions .plan-cell {
    min-height: 87px;
    padding: 16px;
  }

  .pricing-page .plan-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .pricing-page .recommended .plan-button.primary {
    font-size: 0;
  }

  .pricing-page .recommended .plan-button.primary::before {
    content: "Selecteer";
    font-size: 12px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .category-layout {
    padding-top: 36px;
    padding-bottom: 70px;
  }

  .category-head {
    margin-bottom: 32px;
  }

  .category-head h1 {
    font-size: 28px;
  }

  .category-head p {
    font-size: 16px;
  }

  .category-posts {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .topbar {
    min-height: 98px;
  }
.site-header .logo img {
  width: 136px;
}

.footer .red-logo img {
  width: 136px;
}
  .header-actions {
    gap: 14px;
  }
.post-page .post-cta h2 {
    font-size: 20px;
  }
.post-cta p {
    font-size: 16px;

}
.about-content img {
  
  height: 330px;
}
.about-content {
  gap: 23px;
}
  .signup {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
.post-image {
  width: 100%;
  height: 282px;
  margin-bottom: 24px;
}
  .menu {
    justify-content: flex-start;
    gap: 20px;
    font-size: 16px;
  }

  .lead,
  .compact-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .lead {
    padding-top: 32px;
  }

  .hero-card p,
  .wide-card p {
    font-size: 17px;
  }

  .news-card h2,
  .news-card h3 {
    font-size: 22px;
  }

  .feature-strip,
  .section {
    padding: 36px 0;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .post-layout {
    padding-top: 36px;
    padding-bottom: 100px;
  }

  .post-head h1 {
    font-size: 24px;
  }

  .byline {
    align-items: flex-start;
    font-size: 12px;
  }
.category-chip {
  font-size: 12px;
}
  .byline span {
    display: none;
  }

  .post-intro {
    font-size: 18px;
    line-height: 120%;
  }

  .post-body {
    font-size: 16px;
  }

  .post-cta {
    min-height: 220px;
  }

  .pricing-layout {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .pricing-intro {
    margin-bottom: 32px;
  }

  .pricing-intro h1 {
    font-size: 28px;
  }

  .pricing-intro p {
    font-size: 18px;
  }

  .pricing-row {
    grid-template-columns: 220px repeat(3, 190px);
    min-width: 790px;
  }

  .feature-cell,
  .plan-cell {
    padding: 18px;
  }

  .pricing-header .feature-cell,
  .pricing-header .plan-cell {
    min-height: 170px;
  }

  .price {
    font-size: 30px;
  }

  .about-layout {
    padding-top: 36px;
    padding-bottom: 100px;
  }

  .about-page .about-layout h1 {
    margin-bottom: 36px;
    font-size: 24px;
  }


  .about-copy {
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  .home-page .container {
    width: min(100% - 32px, var(--container));
  }

  .home-page .topbar,
  .post-page .topbar,
  {
    min-height: 86px;
    padding-block: 25px;
  }

  .site-header .logo {
    font-size: 24px;
  }

  .home-page .menu {
    display: none;
  }

  .home-page .signup,
  .post-page .signup,
  .about-page .signup
   {
    min-height: 48px;
    padding-inline: 24px;
    font-size: 16px;
  }
.about-copy {
    font-size: 16px;
  }
  .home-page .lead {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-top: 37px;
  }

  .home-page .dossier {
    display: none;
  }

  .home-page .hero-card h1 {
    font-size: 24px;
  }

  .home-page .hero-card p {
    font-size: 16px;
    line-height: 1.2;
  }

  .home-page .hero-card img {
    aspect-ratio: 448 / 291;
  }

  .home-page .lead-stack {
    gap: 24px;
  }

  .home-page .compact-grid,
  .home-page .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-page .compact-grid {
    padding-top: 24px;
    padding-bottom: 54px;
  }

  .home-page .news-card {
    gap: 16px;
  }

  .home-page .news-card img {
    height: 188px;
    flex-basis: 188px;
    aspect-ratio: 448 / 188;
  }

  .home-page .news-card h2,
  .home-page .news-card h3 {
    font-size: 20px;
    letter-spacing: 0.1px;
  }

  .home-page .feature-strip {
    padding: 36px 0 33px;
  }

  .home-page .section-title {
    margin-bottom: 44px;
    font-size: 28px;
  }

  .home-page .news-slider {
    height: 292px;
  }

  .home-page .news-slider .swiper-slide {
    width: min(334px, calc(100vw - 32px));
  }

  .home-page .news-card.light h3 {
    min-height: 46px;
    font-size: 20px;
  }

  .home-page .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 140px;
    width: 48px;
    height: 48px;
    padding-bottom: 4px;
    font-size: 28px;
  }

  .home-page .slider-arrow.prev {
    left: -8px;
  }

  .home-page .slider-arrow.next {
    right: -8px;
  }

  .home-page .slider-dots {
    padding-top: 0px;
  }

  .home-page .section {
    padding: 48px 0;
  }

  .home-page .two-column,
  .home-page .wide-card {
    grid-template-columns: 1fr;
  }

  .home-page .wide-card {
    gap: 16px;
  }

  .home-page .wide-card img {
    aspect-ratio: 448 / 250;
  }

  .home-page .wide-card h3 {
    font-size: 20px;
  }

  .home-page .wide-card p {
    display: block;
    font-size: 16px;
    line-height: 1.2;
  }

  .footer {
    padding-top: 27px;
  }

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

  .footer-top {
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer .logo {
    font-size: 40px;
  }

  .footer nav {
    justify-content: center;
  }

  address {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .policy-layout {
    padding-top: 36px;
    padding-bottom: 70px;
  }

  .policy-content {
    font-size: 16px;
  }

  .policy-content h1 {
    font-size: 28px;
  }

  .policy-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .pricing-page .container {
    width: min(100% - 32px, var(--container));
  }

  .pricing-page .menu {
    display: none;
  }

  .pricing-page .topbar {
    min-height: 98px;
  }

  .pricing-page .site-header .logo img {
    width: 137px;
  }

  .pricing-page .signup {
    min-width: 152px;
    min-height: 50px;
    padding-inline: 22px;
    font-size: 16px;
  }

  .pricing-page .pricing-layout {
    padding-top: 36px;
    padding-bottom: 102px;
  }

  .pricing-page .pricing-intro {
  
    margin-bottom: 39px;
  }

  .pricing-page .pricing-intro h1 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.16;
  }

  .pricing-page .pricing-intro p {
    font-size: 16px;
    line-height: 1.16;
  }

  .pricing-page .pricing-table {
    display: none;
  }

  .pricing-page .pricing-mobile-cards {
    display: grid;
    gap: 22px;
  }

  .pricing-page .pricing-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(17, 24, 39, .06);
  }

  .pricing-page .pricing-card.recommended {
    border: 2px solid var(--blue);
  }

  .pricing-page .pricing-card-head {
    /* min-height: 162px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 33px 24px;
    text-align: center;
  }

  .pricing-page .pricing-card.recommended .pricing-card-head {
    min-height: 188px;
    background: #f5f3ff;
  }

  .pricing-page .pricing-card-head h2 {
    color: #111827;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
  }

  .pricing-page .pricing-card-head .price {
    font-size: 42px;
    line-height: 1.05;
  }

  .pricing-page .pricing-card-head .price span {
    font-size: 16px;
  }

  .pricing-page .pricing-card .badge {
    padding: 5px 12px;
    font-size: 10px;
  }

  .pricing-page .pricing-card-features {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .pricing-page .pricing-card-features li {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 17px;
    border-top: 1px solid #e5e7eb;
    padding: 0 22px;
    color: #111827;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
  }

  .pricing-page .pricing-card-features li:nth-child(even) {
    background: #f9fafb;
  }

  .pricing-page .pricing-card-features li.disabled {
    color: #b5bdc8;
  }

  .pricing-page .pricing-card-features .mark {
    width: 19px;
    flex: 0 0 19px;
    text-align: center;
  }

  .pricing-page .pricing-card-action {
    border-top: 1px solid #e5e7eb;
    padding: 32px;
  }

  .pricing-page .pricing-card-action .plan-button {
    min-height: 48px;
    border-radius: 7px;
    font-size: 14px;
  }

  .pricing-page .pricing-card.recommended .pricing-card-action {
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .pricing-page .pricing-card.recommended .plan-button {
    min-height: 48px;
    background: var(--blue);
    color: #fff;
  }
}

@media (min-width: 521px) and (max-width: 767px) {
  .pricing-page .pricing-layout {
    width: min(var(--container), calc(100% - 48px));
    padding-top: 36px;
  }

  .pricing-page .pricing-intro {
    margin-bottom: 36px;
  }

  .pricing-page .pricing-intro h1 {
    font-size: 26px;
  }

  .pricing-page .pricing-intro p {
    font-size: 16px;
  }

  .pricing-page .pricing-table {
    display: block;
    overflow: hidden;
  }

  .pricing-page .pricing-mobile-cards {
    display: none;
  }

  .pricing-page .pricing-row {
    grid-template-columns: 190px repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .pricing-page .feature-cell {
    min-height: 58px;
    padding: 14px;
    font-size: 12px;
  }

  .pricing-page .pricing-row:not(.pricing-header):not(.pricing-actions) .plan-cell {
    min-height: 58px;
    padding: 0;
  }

  .pricing-page .pricing-header .feature-cell,
  .pricing-page .pricing-header .plan-cell {
    min-height: 140px;
    padding: 20px 10px;
  }

  .pricing-page .pricing-header h2 {
    font-size: 16px;
  }

  .pricing-page .price {
    font-size: 28px;
  }

  .pricing-page .price span {
    font-size: 11px;
  }

  .pricing-page .pricing-actions .feature-cell,
  .pricing-page .pricing-actions .plan-cell {
    min-height: 82px;
    padding: 12px;
  }

  .pricing-page .plan-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .category-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(2):focus-within) .pricing-row .plan-cell:nth-child(2),
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(2):active) .pricing-row .plan-cell:nth-child(2),
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(3):focus-within) .pricing-row .plan-cell:nth-child(3),
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(3):active) .pricing-row .plan-cell:nth-child(3),
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(4):focus-within) .pricing-row .plan-cell:nth-child(4),
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(4):active) .pricing-row .plan-cell:nth-child(4),
  .pricing-page .pricing-card:focus-within,
  .pricing-page .pricing-card:active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
  }

  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(2):focus-within) .pricing-row .plan-cell:nth-child(2) h2,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(2):focus-within) .pricing-row .plan-cell:nth-child(2) .price,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(2):focus-within) .pricing-row .plan-cell:nth-child(2) .price span,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(3):focus-within) .pricing-row .plan-cell:nth-child(3) h2,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(3):focus-within) .pricing-row .plan-cell:nth-child(3) .price,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(3):focus-within) .pricing-row .plan-cell:nth-child(3) .price span,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(4):focus-within) .pricing-row .plan-cell:nth-child(4) h2,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(4):focus-within) .pricing-row .plan-cell:nth-child(4) .price,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(4):focus-within) .pricing-row .plan-cell:nth-child(4) .price span,
  .pricing-page .pricing-card:focus-within h2,
  .pricing-page .pricing-card:focus-within .price,
  .pricing-page .pricing-card:focus-within .price span,
  .pricing-page .pricing-card:active h2,
  .pricing-page .pricing-card:active .price,
  .pricing-page .pricing-card:active .price span,
  .pricing-page .pricing-card:focus-within li,
  .pricing-page .pricing-card:active li {
    color: #fff;
  }

  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(2):focus-within) .pricing-row .plan-cell:nth-child(2) .plan-button,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(3):focus-within) .pricing-row .plan-cell:nth-child(3) .plan-button,
  .pricing-page .pricing-table:has(.pricing-row .plan-cell:nth-child(4):focus-within) .pricing-row .plan-cell:nth-child(4) .plan-button,
  .pricing-page .pricing-card:focus-within .plan-button,
  .pricing-page .pricing-card:active .plan-button {
    border-color: #fff;
    background: #fff;
    color: var(--blue);
  }

  .pricing-page .pricing-card:focus-within .pricing-card-head,
  .pricing-page .pricing-card:active .pricing-card-head,
  .pricing-page .pricing-card:focus-within .pricing-card-features li:nth-child(even),
  .pricing-page .pricing-card:active .pricing-card-features li:nth-child(even) {
    background: var(--blue);
  }
}

@media (max-width: 767px) {
  .subscription-modal {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
  }

  .subscription-modal__overlay {
    display: none;
  }

  .subscription-modal__dialog {
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    padding: 100px 0 40px;
    overflow-y: auto;
  }

  .subscription-modal__close {
    top: 43px;
    left: 18px;
    right: auto;
    width: 28px;
    height: 28px;
    font-size: 0;
  }

  .subscription-modal__close::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-left: 2px solid #cfd3d8;
    border-bottom: 2px solid #cfd3d8;
    transform: rotate(45deg);
  }

  .subscription-modal__dialog h2 {
    max-width: none;
    width: calc(100% - 32px);
    margin: 0 auto 26px;
    font-size: 24px;
    line-height: 1.2;
    text-align: left;
  }

  .subscription-form {
    width: calc(100% - 32px);
    max-width: 100%;
    margin-inline: auto;
  }

  .subscription-form label {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .subscription-form input {
    height: 53px;
  }

  .subscription-submit {
    width: min(236px, 100%);
    min-height: 44px;
    margin-top: 26px;
    font-size: 14px;
  }

  .subscription-success {
    width: calc(100% - 32px);
    margin-inline: auto;
    font-size: 14px;
  }

  .subscription-success h2 {
    text-align: left;
    font-size: 24px;
  }

  .login-modal {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
  }

  .login-modal__overlay {
    display: none;
  }

  .login-modal__dialog {
    width: 100%;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
    padding: 92px 16px 40px;
    overflow-y: auto;
  }

  .login-modal__close {
    top: 43px;
    left: 34px;
    right: auto;
    width: 28px;
    height: 28px;
    font-size: 0;
  }

  .login-modal__close::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-left: 2px solid #cfd3d8;
    border-bottom: 2px solid #cfd3d8;
    transform: rotate(45deg);
  }

  .login-modal__dialog h2 {
    margin-bottom: 27px;
    font-size: 28px;
  }

  .login-form {
    width: 100%;
  }

  .login-form input {
    height: 52px;
  }
}

@media (max-width: 991px) {
  .site-header .topbar {
    justify-content: flex-start;
  }

  .site-header .logo {
    margin-right: auto;
  }

  .site-header .menu-toggle {
    display: inline-flex;
  }

  .site-header .menu {
    display: flex;
    min-height: 0;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0 24px;
    overflow: hidden;
    font-size: 18px;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease,
      opacity 0.2s ease,
      transform 0.3s ease,
      visibility 0s linear 0.3s;
  }

  .site-header.is-menu-open .menu {
    max-height: 480px;
    padding-block: 8px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease,
      opacity 0.2s ease,
      transform 0.3s ease,
      visibility 0s linear 0s;
  }

  .site-header .menu a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .site-header .menu a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .site-header .topbar {
    gap: 10px;
  }

  .site-header .menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}
