/* ============================================================
   Landing styles — scoped to #custom-landing-page only
   Drupal/Twig: attach as separate library, no global selectors
   ============================================================ */

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/sites/default/files/2026-09/roboto-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/sites/default/files/2026-09/roboto-medium.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/sites/default/files/2026-09/roboto-bold.woff2") format("woff2");
}

#custom-landing-page {
  --clp-heading: #14093d;
  --clp-primary: #616a97;
  --clp-primary-dark: #4f577d;
  --clp-accent-gradient-circle: linear-gradient(135deg, #ffdc74 0%, #FFCB77 100%);
  --clp-accent-gradient-default: linear-gradient(135deg, #ffdc74 0%, #FFC977 100%);
  --clp-accent-gradient-h: linear-gradient(97deg, #ffdc74 0%, #ffc278 53%, #ff9c7d 100%);
  --clp-accent-orange: #ffca77;
  --clp-light-blue: #e3edff;
  --clp-light-blue-border: #e3edff;
  --clp-accordion-gradient: linear-gradient(-6.5deg, #e3edff 5%, #99bdff 104%);
  --clp-text: #333333;
  --clp-white: #ffffff;
  --clp-shadow: 0 2px 16px rgba(20, 9, 61, 0.06);
  --clp-shadow-link: 0 0px 20px rgba(0, 0, 0, 0.3);
  --clp-shadow-card: 0 4px 20px rgba(20, 9, 61, 0.08);
  --clp-radius-sm: 16px;
  --clp-radius-box: 24px;
  --clp-radius-measure: 32px;
  --clp-font: "Roboto", system-ui, -apple-system, sans-serif;
  --clp-font-size-base: clamp(0.875rem, 0.35vw + 0.8125rem, 1.125rem);
  --clp-font-size-lg: clamp(0.975rem, 0.45vw + 0.875rem, 1.25rem);
  --clp-line-height: 1.25;
  --clp-container-max: 1320px;
  --clp-section-gap: clamp(36px, 6vw, 72px);
  --clp-section-gap-sm: 32px;
  --clp-col-gap: clamp(24px, 3vw, 48px);

  font-family: var(--clp-font);
  font-size: var(--clp-font-size-base);
  line-height: var(--clp-line-height);
  color: var(--clp-text);
  box-sizing: border-box;
  background: var(--clp-white);
}

#custom-landing-page *,
#custom-landing-page *::before,
#custom-landing-page *::after {
  box-sizing: inherit;
}

#custom-landing-page .clp-container {
  max-width: var(--clp-container-max);
  margin-inline: auto;
  padding-inline: 32px;
}

#custom-landing-page .clp-section {
  padding-block: var(--clp-section-gap);
}

#custom-landing-page .clp-section-title {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 700;
  color: var(--clp-heading);
  margin: 0 0 12px;
  line-height: 1.25;
}

#custom-landing-page .clp-section-title--center {
  text-align: center;
}

#custom-landing-page .clp-subsection-title {
  font-size: var(--clp-font-size-lg);
  font-weight: 400;
  color: var(--clp-text);
  margin: 16px 0 10px;
}

#custom-landing-page .clp-text {
  margin: 0 0 12px;
  color: var(--clp-text);
  line-height: var(--clp-line-height);
  font-size: var(--clp-font-size-base);
  text-align: justify;
}

#custom-landing-page .clp-text:last-child {
  margin-bottom: 0;
}

#custom-landing-page a.clp-btn,
#custom-landing-page .clp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  border: none;
  border-radius: 612px;
  font-family: var(--clp-font);
  font-size: var(--clp-font-size-lg);
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-sizing: border-box;
}

#custom-landing-page a.clp-btn svg,
#custom-landing-page .clp-btn svg {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

#custom-landing-page .clp-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 183, 77, 0.35);
}

#custom-landing-page .clp-btn--accent {
  background: var(--clp-accent-gradient-default);
  color: var(--clp-text);
}

#custom-landing-page .clp-assessment__content,
#custom-landing-page .clp-usage-preview__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#custom-landing-page .clp-assessment__content h2,
#custom-landing-page .clp-usage-preview__content h2,
#custom-landing-page .clp-assessment__content p,
#custom-landing-page .clp-usage-preview__content p {
  width: 100%;
}
#custom-landing-page .clp-assessment__content p:has(a.clp-btn), 
#custom-landing-page .clp-usage-preview__content p:has(a.clp-btn) {
  display: flex;
  justify-content: center;
}
#custom-landing-page .clp-assessment__content a.clp-btn,
#custom-landing-page .clp-usage-preview__content a.clp-btn {
  display: inline-flex;
  width: auto;
  min-width: 14em;
  max-width: 100%;
  margin-top: 6px;
  margin-inline: auto;
}

#custom-landing-page .clp-btn--primary {
  background: var(--clp-primary);
  color: var(--clp-white);
  box-shadow: 0 4px 16px rgba(103, 114, 148, 0.3);
}

#custom-landing-page .clp-btn--primary:hover {
  box-shadow: 0 6px 20px rgba(103, 114, 148, 0.4);
}

#custom-landing-page .clp-btn--wide {
  width: 100%;
  max-width: 640px;
  min-height: 58px;
  padding: 14px 32px;
  font-size: var(--clp-font-size-lg);
  border-radius: 612px;
}

#custom-landing-page a.clp-btn--download,
#custom-landing-page .clp-btn--download {
  background: var(--clp-primary);
  color: var(--clp-white);
  border-radius: 9px;
  box-shadow: var(--clp-shadow-link);
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
  align-items: center;
  font-size: var(--clp-font-size-lg);
  padding: 14px 20px;
}

#custom-landing-page a.clp-btn--download::after,
#custom-landing-page .clp-btn--download::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-top: 5px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M4 19h16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#custom-landing-page a.clp-btn--download:hover,
#custom-landing-page .clp-btn--download:hover {
  box-shadow: var(--clp-shadow-card);
}

/* Hero */
#custom-landing-page .clp-hero {
  padding-top: 24px;
}

#custom-landing-page .clp-hero__title {
  font-size: clamp(1.75rem, 2.2vw, 2.625rem);
  font-weight: 700;
  color: var(--clp-heading);
  line-height: 1.2;
  margin: 0 0 28px;
  max-width: 100%;
}

#custom-landing-page .clp-hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--clp-col-gap);
  align-items: start;
}

#custom-landing-page .clp-hero__left {
  padding-top: 24px;
  min-width: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

#custom-landing-page .clp-hero__right {
  position: relative;
  min-width: 0;
}

#custom-landing-page .clp-info-box {
  background: var(--clp-accent-gradient-h);
  background-size: 256.41% 100%;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  border-radius: var(--clp-radius-box);
  padding: 14px 16px;
  min-height: 130px;
  display: flex;
  align-items: center;
}

#custom-landing-page .clp-info-box__text {
  margin: 0;
  font-size: var(--clp-font-size-lg);
  color: var(--clp-text);
  text-align: justify;
}

#custom-landing-page a.clp-search-link,
#custom-landing-page .clp-search-link {
  position: absolute;
  bottom: 8%;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  width: calc(100% - 12px);
  max-width: 320px;
  min-height: 46px;
  padding: 8px 12px 8px 22px;
  background: var(--clp-white);
  border: 1.5px solid var(--clp-light-blue-border);
  border-radius: 9px;
  box-shadow: var(--clp-shadow-link);
  text-decoration: none;
  color: var(--clp-text);
  font-size: var(--clp-font-size-base);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#custom-landing-page .clp-search-link__text {
  display: inline;
  float: none;
  flex: 1 1 auto;
  min-width: 0;
}

#custom-landing-page a.clp-search-link::after,
#custom-landing-page .clp-search-link::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23616a97' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#custom-landing-page .clp-hero__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  float: none;
}

#custom-landing-page .clp-assessment__image,
#custom-landing-page .clp-results__image,
#custom-landing-page .clp-usage-preview__image,
#custom-landing-page .clp-faq__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  float: none;
}

/* Goals */
#custom-landing-page .clp-goals {
  padding-top: 0;
}

#custom-landing-page .clp-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

#custom-landing-page .clp-section-header__icon {
  color: var(--clp-primary);
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

#custom-landing-page .clp-search-link:hover {
  box-shadow: var(--clp-shadow-card);
}

#custom-landing-page .clp-section-header__title {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 700;
  color: var(--clp-heading);
  margin: 0;
}

#custom-landing-page .clp-goals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 64px);
  list-style: none;
  padding: 0;
  margin: 0;
}

#custom-landing-page .clp-goals__card {
  position: relative;
  background: var(--clp-white);
  border-radius: var(--clp-radius-box);
  padding: 28px 22px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
}

#custom-landing-page .clp-goals__card::after {
  content: "";
  position: absolute;
  transform: translate(50%, 50%);
  bottom: 20%;
  right: 20%;
  width: 75%;
  aspect-ratio: 1/1;
  background: var(--clp-accent-gradient-circle);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

#custom-landing-page .clp-goals__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: var(--clp-font-size-lg);
  font-weight: 400;
  color: var(--clp-text);
  line-height: 1.35;
  text-align: center;
}

/* Two-column sections */
#custom-landing-page .clp-assessment__inner,
#custom-landing-page .clp-results__inner,
#custom-landing-page .clp-usage-preview__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--clp-col-gap);
  align-items: center;
}

#custom-landing-page .clp-assessment__media,
#custom-landing-page .clp-results__media,
#custom-landing-page .clp-usage-preview__media {
  min-width: 0;
}

#custom-landing-page .clp-assessment__content,
#custom-landing-page .clp-results__content,
#custom-landing-page .clp-usage-preview__content {
  padding-block: 8px;
}

#custom-landing-page .clp-results__media {
  max-width: 460px;
  justify-self: center;
}

#custom-landing-page .clp-doc-list__item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px 12px;
  align-items: start;
  font-size: var(--clp-font-size-base);
  color: var(--clp-text);
  line-height: 1.35;
  text-align: justify;
  margin-bottom: 10px;
}

#custom-landing-page .clp-doc-list__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

#custom-landing-page .clp-doc-list__link {
  color: inherit;
  text-decoration: none;
}

#custom-landing-page .clp-doc-list__link:hover {
  text-decoration: underline;
}

#custom-landing-page .clp-doc-list__text {
  display: block;
}

#custom-landing-page .clp-usage-preview__subtitle {
  font-size: var(--clp-font-size-lg);
  color: var(--clp-text);
  margin: 0 0 14px;
  text-align: justify;
}

/* Quick links */
#custom-landing-page .clp-quick-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 40px);
  align-items: stretch;
}

#custom-landing-page a.clp-link-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 120px;
  padding: 24px 28px;
  background: var(--clp-white);
  border: 2px solid var(--clp-light-blue-border);
  border-radius: var(--clp-radius-box);
  text-decoration: none;
  color: var(--clp-heading);
  box-sizing: border-box;
  float: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#custom-landing-page .clp-link-card:hover {
  border-color: var(--clp-light-blue-border);
  box-shadow: var(--clp-shadow-card);
}

#custom-landing-page .clp-link-card__text {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.2vw, 1.375rem);
  line-height: 1.35;
  max-width: none;
  float: none;
}

#custom-landing-page .clp-link-card__cta {
  display: inline;
  white-space: normal;
  float: none;
}

#custom-landing-page .clp-link-card__cta::after {
  content: "";
  display: inline-block;
  width: 1.45em;
  height: 1.2em;
  margin-left: 0.25em;
  vertical-align: -0.28em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314093d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 8 4 4-4 4'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s;
}

#custom-landing-page .clp-link-card:hover .clp-link-card__cta::after {
  transform: translateX(6px);
}

/* FAQ */
#custom-landing-page .clp-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 928fr) minmax(0, 537fr);
  gap: var(--clp-col-gap);
  align-items: start;
}

#custom-landing-page .clp-faq__media {
  align-self: start;
}

#custom-landing-page .clp-faq__title {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 700;
  color: var(--clp-heading);
  margin: 0 0 20px;
}

#custom-landing-page .clp-accordion-item {
  margin-bottom: 12px;
}

#custom-landing-page .clp-accordion-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 68px;
  padding: 16px 20px;
  background: var(--clp-primary);
  color: var(--clp-white);
  border: none;
  border-radius: var(--clp-radius-sm);
  font-family: var(--clp-font);
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1.25;
}

#custom-landing-page .clp-accordion-item__chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--clp-white);
  transition: transform 0.25s;
}

#custom-landing-page .clp-accordion-item__trigger[aria-expanded="true"] .clp-accordion-item__chevron {
  transform: rotate(180deg);
}

#custom-landing-page .clp-accordion-item__trigger:hover,
#custom-landing-page .clp-accordion-item__trigger[aria-expanded="true"] {
  background: var(--clp-primary-dark);
}

#custom-landing-page .clp-accordion-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#custom-landing-page .clp-accordion-item__panel.is-open {
  grid-template-rows: 1fr;
}

#custom-landing-page .clp-accordion-item__panel-inner {
  overflow: hidden;
}

#custom-landing-page .clp-accordion-item__panel-content {
  margin-top: 10px;
  padding: 18px 22px 20px 24px;
  background: var(--clp-white);
  border: 2px solid var(--clp-primary);
  border-radius: var(--clp-radius-sm);
  box-shadow: 0 10px 28px rgba(20, 9, 61, 0.07);
}

#custom-landing-page .clp-accordion-item__panel-content .clp-text {
  margin-bottom: 10px;
  line-height: 1.45;
  text-align: left;
  color: var(--clp-text);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

#custom-landing-page .clp-accordion-item__panel.is-open .clp-accordion-item__panel-content .clp-text {
  opacity: 1;
  transform: translateY(0);
}

#custom-landing-page .clp-accordion-item__panel-content .clp-text:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  #custom-landing-page .clp-accordion-item__panel,
  #custom-landing-page.clp-page--usage .clp-accordion-block__panel {
    transition: none;
  }

  #custom-landing-page .clp-accordion-item__panel-content .clp-text,
  #custom-landing-page.clp-page--usage .clp-accordion-block__panel-content .clp-text,
  #custom-landing-page .clp-accordion-item__chevron,
  #custom-landing-page.clp-page--usage .clp-accordion-block__chevron {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

#custom-landing-page .clp-faq__image {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

/* Drupal embed: inside main .container (~1320px), theme header/footer/sliders stay */
#custom-landing-page.clp-page--embedded {
  background: transparent;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#custom-landing-page.clp-page--embedded .clp-container {
  max-width: 100%;
  padding-inline: 0;
}

#custom-landing-page.clp-page--embedded .clp-section:first-child {
  padding-top: 0;
}

/* Drupal theme: reset common body-field overrides */
.field--name-body #custom-landing-page,
.text-formatted #custom-landing-page,
.node__content #custom-landing-page,
.field__item #custom-landing-page,
main #custom-landing-page {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.field--name-body #custom-landing-page img,
.text-formatted #custom-landing-page img,
main #custom-landing-page img {
  float: none !important;
  max-width: 100% !important;
  height: auto !important;
}

.field--name-body #custom-landing-page .clp-hero__body,
.field--name-body #custom-landing-page .clp-assessment__inner,
.field--name-body #custom-landing-page .clp-results__inner,
.field--name-body #custom-landing-page .clp-usage-preview__inner,
.field--name-body #custom-landing-page .clp-quick-links__grid,
.field--name-body #custom-landing-page .clp-faq__inner,
.field--name-body #custom-landing-page .clp-contacts__grid,
.text-formatted #custom-landing-page .clp-hero__body,
.text-formatted #custom-landing-page .clp-assessment__inner,
.text-formatted #custom-landing-page .clp-results__inner,
.text-formatted #custom-landing-page .clp-usage-preview__inner,
.text-formatted #custom-landing-page .clp-quick-links__grid,
.text-formatted #custom-landing-page .clp-faq__inner,
.text-formatted #custom-landing-page .clp-contacts__grid {
  display: grid !important;
}

.field--name-body #custom-landing-page .clp-quick-links__grid,
.text-formatted #custom-landing-page .clp-quick-links__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.field--name-body #custom-landing-page a.clp-search-link,
.text-formatted #custom-landing-page a.clp-search-link {
  position: absolute !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-decoration: none !important;
  color: var(--clp-text) !important;
}

.field--name-body #custom-landing-page a.clp-search-link::after,
.text-formatted #custom-landing-page a.clp-search-link::after {
  display: inline-block !important;
  flex-shrink: 0 !important;
}

.field--name-body #custom-landing-page a.clp-link-card,
.text-formatted #custom-landing-page a.clp-link-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  float: none !important;
  text-decoration: none !important;
  color: var(--clp-heading) !important;
}

.field--name-body #custom-landing-page .clp-link-card__text,
.field--name-body #custom-landing-page .clp-link-card__cta,
.text-formatted #custom-landing-page .clp-link-card__text,
.text-formatted #custom-landing-page .clp-link-card__cta {
  display: inline !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.field--name-body #custom-landing-page .clp-link-card__text,
.text-formatted #custom-landing-page .clp-link-card__text {
  display: block !important;
  width: 100% !important;
}

.field--name-body #custom-landing-page .clp-link-card__cta::after,
.text-formatted #custom-landing-page .clp-link-card__cta::after {
  display: inline-block !important;
  float: none !important;
}

.field--name-body #custom-landing-page a.clp-btn,
.text-formatted #custom-landing-page a.clp-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  float: none !important;
}

.field--name-body #custom-landing-page .clp-assessment__content,
.field--name-body #custom-landing-page .clp-usage-preview__content,
.text-formatted #custom-landing-page .clp-assessment__content,
.text-formatted #custom-landing-page .clp-usage-preview__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.field--name-body #custom-landing-page a.clp-btn--download,
.text-formatted #custom-landing-page a.clp-btn--download {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 640px !important;
}

.field--name-body #custom-landing-page a.clp-btn--download::after,
.text-formatted #custom-landing-page a.clp-btn--download::after {
  display: inline-block !important;
  flex-shrink: 0 !important;
}

.field--name-body #custom-landing-page a.clp-btn svg,
.text-formatted #custom-landing-page a.clp-btn svg {
  display: none !important;
}

.field--name-body #custom-landing-page .clp-video__inner,
.text-formatted #custom-landing-page .clp-video__inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.field--name-body #custom-landing-page .clp-video__player,
.text-formatted #custom-landing-page .clp-video__player {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 900px !important;
  margin-inline: auto !important;
  float: none !important;
}

.field--name-body #custom-landing-page .clp-video__thumbnail,
.text-formatted #custom-landing-page .clp-video__thumbnail {
  display: block !important;
  float: none !important;
  width: 100% !important;
  height: auto !important;
}

.field--name-body #custom-landing-page .clp-video__screen,
.text-formatted #custom-landing-page .clp-video__screen {
  position: absolute !important;
  float: none !important;
}

.field--name-body #custom-landing-page button.clp-accordion-item__trigger,
.text-formatted #custom-landing-page button.clp-accordion-item__trigger {
  display: flex !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 16px 20px !important;
  border: none !important;
  background: var(--clp-primary) !important;
  color: var(--clp-white) !important;
  font: inherit !important;
  text-align: left !important;
  cursor: pointer !important;
  appearance: none !important;
  box-shadow: none !important;
}

.field--name-body #custom-landing-page button.clp-accordion-block__trigger,
.text-formatted #custom-landing-page button.clp-accordion-block__trigger {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  color: inherit !important;
  font: inherit !important;
  text-align: inherit !important;
  cursor: pointer !important;
  appearance: none !important;
  box-shadow: none !important;
}

.field--name-body #custom-landing-page section,
.text-formatted #custom-landing-page section {
  float: none !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .field--name-body #custom-landing-page .clp-quick-links__grid,
  .text-formatted #custom-landing-page .clp-quick-links__grid {
    grid-template-columns: 1fr !important;
  }
}

/* body.ropd-landing-page .page-title,
body.ropd-landing-page .page-header,
body.ropd-landing-page .block-page-title-block,
body.ropd-landing-page .node__title {
  display: none !important;
} */

/* Contacts */
#custom-landing-page .clp-contacts {
  padding-bottom: var(--clp-section-gap);
}

#custom-landing-page .clp-contacts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 80px);
  margin-top: 32px;
}

#custom-landing-page .clp-contact-card {
  position: relative;
  background: var(--clp-accent-gradient-h);
  border-radius: var(--clp-radius-box);
  padding: 28px 32px 24px 20px;
  min-height: 260px;
}

#custom-landing-page .clp-contact-card__icon-wrap {
  position: absolute;
  right: 20px;
  bottom: 20px;
  top: auto;
}

#custom-landing-page .clp-contact-card__icon-wrap img {
  width: 72px;
  height: 72px;
  opacity: 1;
}

#custom-landing-page .clp-contact-card__title {
  font-size: var(--clp-font-size-lg);
  font-weight: 700;
  color: var(--clp-text);
  margin: 0 0 16px;
  padding-right: 80px;
  line-height: 1.3;
  text-align: left;
}

#custom-landing-page .clp-contact-card--method {
  min-height: 250px;
}

#custom-landing-page .clp-contact-card__list {
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#custom-landing-page .clp-contact-card__text {
  font-size: var(--clp-font-size-base);
  color: var(--clp-text);
  text-align: justify;
}

#custom-landing-page .clp-contact-card__link {
  color: var(--clp-heading);
  text-decoration: underline;
  font-size: var(--clp-font-size-base);
}

/* Video */
#custom-landing-page .clp-video__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

#custom-landing-page .clp-video__player {
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  float: none;
}

#custom-landing-page .clp-video__thumbnail {
  width: 100%;
  height: auto;
  display: block;
  float: none;
  position: relative;
  z-index: 0;
}

/* LCD of video-thumbnail.png (1647×1465 → inner screen 302,367 1020×564) */
#custom-landing-page .clp-video__screen {
  position: absolute;
  top: calc(295 / 1465 * 100%);
  left: calc(302 / 1647 * 100%);
  width: calc(1020 / 1647 * 100%);
  height: calc(955 / 1465 * 100%);
  overflow: hidden;
  border-radius: 2px;
  z-index: 1;
  float: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

#custom-landing-page .clp-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

#custom-landing-page .clp-video__media[hidden] {
  display: none;
}

#custom-landing-page .clp-video__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 39, 68, 0);
  border: none;
  color: var(--clp-white);
  cursor: pointer;
  transition: background 0.2s;
}

#custom-landing-page .clp-video__play-btn:hover {
  background: rgba(26, 39, 68, 0.38);
}

#custom-landing-page .clp-video__play-btn svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

#custom-landing-page .clp-video__player.is-playing .clp-video__play-btn {
  display: none;
}

/* Usage page */
#custom-landing-page.clp-page--usage .clp-usage-hero {
  padding-top: 36px;
  padding-bottom: clamp(20px, 3vw, 36px);
}

#custom-landing-page.clp-page--usage .clp-measures,
#custom-landing-page.clp-page--usage .clp-registration,
#custom-landing-page.clp-page--usage .clp-usage-accordion,
#custom-landing-page.clp-page--usage .clp-usage-footer {
  padding-block: clamp(20px, 3vw, 36px);
}

#custom-landing-page.clp-page--usage .clp-measures .clp-section-title,
#custom-landing-page.clp-page--usage .clp-registration .clp-section-title {
  margin-bottom: 10px;
}

#custom-landing-page.clp-page--usage .clp-registration .clp-subsection-title {
  margin-top: 30px;
  margin-bottom: 8px;
}

#custom-landing-page.clp-page--usage .clp-usage-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#custom-landing-page.clp-page--usage .clp-usage-hero__title {
  font-size: clamp(1.625rem, 2.1vw, 2.375rem);
  max-width: none;
  margin-bottom: 0;
  line-height: 1.2;
}

#custom-landing-page.clp-page--usage .clp-usage-hero__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--clp-col-gap);
  align-items: stretch;
}

#custom-landing-page.clp-page--usage .clp-usage-hero__list {
  margin: 0;
}

#custom-landing-page.clp-page--usage .clp-usage-hero__media {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 0;
}

#custom-landing-page.clp-page--usage .clp-usage-hero__image {
  width: auto;
  max-width: min(260px, 90%);
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

#custom-landing-page.clp-page--usage .clp-regulatory-list,
#custom-landing-page.clp-page--usage .clp-bordered-list,
#custom-landing-page.clp-page--usage .clp-data-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 0;
  background: transparent;
}

#custom-landing-page.clp-page--usage .clp-regulatory-list__item,
#custom-landing-page.clp-page--usage .clp-bordered-list__item,
#custom-landing-page.clp-page--usage .clp-data-list__item {
  position: relative;
  padding: 10px 20px 12px 32px;
  border: 2px solid var(--clp-light-blue-border);
  border-radius: var(--clp-radius-box);
  background: var(--clp-white);
  font-size: var(--clp-font-size-base);
  color: var(--clp-text);
  line-height: 1.35;
  text-align: justify;
}

#custom-landing-page.clp-page--usage .clp-regulatory-list__item::before,
#custom-landing-page.clp-page--usage .clp-bordered-list__item::before,
#custom-landing-page.clp-page--usage .clp-data-list__item::before,
#custom-landing-page.clp-page--usage .clp-measures__item::before {
  content: "•";
  position: absolute;
  left: 14px;
  top: 10px;
}

#custom-landing-page.clp-page--usage .clp-measures__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 6px;
  padding: 0;
  list-style: none;
  margin: 8px 0 0;
  border-radius: var(--clp-radius-box);
}

#custom-landing-page.clp-page--usage .clp-measures__item {
  position: relative;
  flex: 0 1 auto;
  width: max-content;
  max-width: min(100%, calc(25% - 6px));
  background: var(--clp-accent-orange);
  border-radius: var(--clp-radius-measure);
  padding: 12px 16px 12px 24px;
  font-size: clamp(0.875rem, 0.35vw + 0.8rem, 1.0625rem);
  font-weight: 400;
  color: var(--clp-text);
  line-height: 1.3;
  text-align: left;
  text-align: justify;
}

#custom-landing-page.clp-page--usage .clp-registration__top {
  margin-top: 8px;
}

#custom-landing-page.clp-page--usage .clp-registration__top > .clp-subsection-title {
  margin-top: 8px;
  margin-bottom: 2px;
}

#custom-landing-page.clp-page--usage .clp-registration__hang {
  position: relative;
  margin-top: -3rem;
  padding-top: 4.25rem;
}

#custom-landing-page.clp-page--usage .clp-registration__avatar {
  position: absolute;
  top: -32px;
  right: clamp(12px, 6%, 72px);
  z-index: 2;
  width: min(170px, 36%);
  height: auto;
  pointer-events: none;
  transform: scaleX(-1);
}

#custom-landing-page.clp-page--usage .clp-bordered-list,
#custom-landing-page.clp-page--usage .clp-data-list {
  margin-top: 12px;
}

#custom-landing-page.clp-page--usage .clp-registration__hang .clp-bordered-list {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

#custom-landing-page.clp-page--usage .clp-registration__hang .clp-bordered-list__item:first-child {
  padding-right: 10rem;
}

#custom-landing-page.clp-page--usage .clp-usage-accordion__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__bar {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 96px 16px 22px;
  background: var(--clp-accordion-gradient);
  border: 1px solid var(--clp-light-blue-border);
  border-radius: var(--clp-radius-box);
  font-family: var(--clp-font);
  font-size: var(--clp-font-size-lg);
  font-weight: 400;
  color: var(--clp-text);
  text-align: justify;
  line-height: 1.35;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__bar p {
  margin: 0;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__bar--tall {
  min-height: 180px;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__bar--medium {
  min-height: 112px;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__bar--short {
  min-height: 84px;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__chevron-wrap {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 34px;
  background: var(--clp-white);
  border-radius: 16px;
  pointer-events: none;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: inherit;
  font: inherit;
  color: inherit;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__chevron {
  width: 30px;
  height: auto;
  object-fit: contain;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__chevron--toggle {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--clp-heading);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#custom-landing-page.clp-page--usage .clp-accordion-block__trigger[aria-expanded="true"] .clp-accordion-block__chevron--toggle {
  transform: rotate(180deg);
}

#custom-landing-page.clp-page--usage .clp-accordion-block__panel {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  padding: 0;
  border: none;
  background: transparent;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#custom-landing-page.clp-page--usage .clp-accordion-block__panel.is-open {
  grid-template-rows: 1fr;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__panel-inner {
  overflow: hidden;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__panel-content {
  margin-top: 10px;
  padding: 18px 22px 20px 24px;
  background: var(--clp-white);
  border: 2px solid #99bdff;
  border-radius: var(--clp-radius-box);
  box-shadow: 0 10px 28px rgba(20, 9, 61, 0.07);
}

#custom-landing-page.clp-page--usage .clp-accordion-block__panel-content .clp-text {
  margin: 0 0 10px;
  line-height: 1.45;
  text-align: justify;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

#custom-landing-page.clp-page--usage .clp-accordion-block__panel.is-open .clp-accordion-block__panel-content .clp-text {
  opacity: 1;
  transform: translateY(0);
}

#custom-landing-page.clp-page--usage .clp-accordion-block__panel-content .clp-text:last-child {
  margin-bottom: 0;
}

#custom-landing-page.clp-page--usage .clp-summary-box {
  grid-column: 1 / -1;
  padding: 10px 16px;
  border: 2px solid var(--clp-light-blue-border);
  border-radius: var(--clp-radius-box);
  background: var(--clp-white);
}

#custom-landing-page.clp-page--usage .clp-summary-box .clp-text {
  line-height: 1.2;
  margin: 0;
}

#custom-landing-page.clp-page--usage .clp-summary-box a {
  color: inherit;
  text-decoration: underline;
}

#custom-landing-page.clp-page--usage .clp-usage-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

#custom-landing-page.clp-page--usage .clp-usage-footer__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

#custom-landing-page.clp-page--usage .clp-usage-footer__text .clp-text {
  margin: 0;
}

#custom-landing-page.clp-page--usage .clp-usage-footer__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

#custom-landing-page.clp-page--usage .clp-usage-footer__image {
  width: auto;
  max-width: min(300px, 100%);
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 1200px) {
  #custom-landing-page .clp-container {
    padding-inline: 24px;
  }

  #custom-landing-page .clp-goals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #custom-landing-page.clp-page--usage .clp-measures__item {
    max-width: min(100%, calc(50% - 4px));
  }
}

@media (max-width: 992px) {
  #custom-landing-page .clp-hero__right {
    margin-top: 0;
  }

  #custom-landing-page .clp-hero__left {
    padding-top: 0;
  }

  #custom-landing-page .clp-hero__image {
    max-width: 420px;
    margin-inline: auto;
  }

  #custom-landing-page .clp-search-link {
    position: static;
    margin-top: 12px;
  }

  #custom-landing-page .clp-goals__card {
    min-height: 200px;
  }

  #custom-landing-page .clp-assessment__content a.clp-btn,
  #custom-landing-page .clp-usage-preview__content a.clp-btn {
    width: auto;
    max-width: 100%;
    min-width: 0;
  }

  #custom-landing-page.clp-page--usage .clp-usage-hero__row,
  #custom-landing-page.clp-page--usage .clp-usage-footer__inner {
    grid-template-columns: 1fr;
  }

  #custom-landing-page.clp-page--usage .clp-usage-hero__media {
    justify-content: center;
    margin-top: 4px;
  }

  #custom-landing-page.clp-page--usage .clp-usage-hero__image {
    width: auto;
    max-width: min(200px, 65%);
    height: auto;
    max-height: 260px;
  }

  #custom-landing-page.clp-page--usage .clp-usage-footer__image {
    width: auto;
    max-width: min(220px, 70%);
    height: auto;
    max-height: 200px;
    margin-inline: auto;
  }

  #custom-landing-page.clp-page--usage .clp-registration__hang .clp-bordered-list__item:first-child {
    padding-right: 8rem;
  }
}

@media (max-width: 768px) {
  #custom-landing-page {
    --clp-col-gap: 24px;
  }

  #custom-landing-page .clp-container {
    padding-inline: 16px;
  }
  .field--name-body #custom-landing-page .clp-results__inner, .text-formatted #custom-landing-page .clp-results__inner {
        flex-direction: column-reverse !important;
    display: flex !important;
  }
  #custom-landing-page .clp-hero__body,
  #custom-landing-page .clp-assessment__inner,
  #custom-landing-page .clp-results__inner,
  #custom-landing-page .clp-usage-preview__inner,
  #custom-landing-page .clp-faq__inner,
  #custom-landing-page .clp-contacts__grid,
  #custom-landing-page .clp-quick-links__grid,
  #custom-landing-page .clp-goals__grid,
  #custom-landing-page.clp-page--usage .clp-usage-hero__row,
  #custom-landing-page.clp-page--usage .clp-usage-footer__inner {
    grid-template-columns: 1fr;
  }

  #custom-landing-page .clp-hero {
    padding-top: 16px;
  }

  #custom-landing-page .clp-hero__title {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    margin-bottom: 16px;
  }

  #custom-landing-page .clp-section-title,
  #custom-landing-page .clp-section-header__title,
  #custom-landing-page .clp-faq__title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  #custom-landing-page .clp-section-header {
    margin-bottom: 20px;
  }

  #custom-landing-page .clp-section-header__icon {
    width: 56px;
    height: 56px;
  }

  #custom-landing-page .clp-goals__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #custom-landing-page .clp-goals__card,
  #custom-landing-page .clp-link-card,
  #custom-landing-page .clp-contact-card,
  #custom-landing-page .clp-contact-card--method {
    min-height: 0;
  }

  #custom-landing-page .clp-goals__card {
    padding: 20px 18px;
  }

  #custom-landing-page .clp-link-card {
    padding: 20px 22px;
  }

  #custom-landing-page .clp-link-card__text {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }

  #custom-landing-page .clp-accordion-item__trigger {
    min-height: 0;
    padding: 14px 16px;
    font-size: clamp(0.9375rem, 4vw, 1.125rem);
  }

  #custom-landing-page .clp-contact-card {
    padding: 22px 20px 20px 16px;
  }

  #custom-landing-page .clp-contact-card__title {
    padding-right: 0;
    margin-bottom: 12px;
  }

  #custom-landing-page .clp-contact-card__icon-wrap img {
    width: 56px;
    height: 56px;
  }

  #custom-landing-page .clp-btn--wide {
    min-height: 52px;
    padding: 12px 20px;
  }

  #custom-landing-page .clp-doc-list__item {
    grid-template-columns: auto 1fr;
  }

  #custom-landing-page .clp-doc-list__icon {
    display: none;
  }

  #custom-landing-page .clp-btn {
    white-space: normal;
    text-align: center;
  }

  #custom-landing-page.clp-page--usage .clp-usage-hero {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  #custom-landing-page.clp-page--usage .clp-measures,
  #custom-landing-page.clp-page--usage .clp-registration,
  #custom-landing-page.clp-page--usage .clp-usage-accordion,
  #custom-landing-page.clp-page--usage .clp-usage-footer {
    padding-block: 20px;
  }

  #custom-landing-page.clp-page--usage .clp-usage-hero__title {  
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
  }

  #custom-landing-page.clp-page--usage .clp-regulatory-list__item,
  #custom-landing-page.clp-page--usage .clp-bordered-list__item,
  #custom-landing-page.clp-page--usage .clp-data-list__item {
    padding: 10px 14px 10px 28px;
  }

  #custom-landing-page.clp-page--usage .clp-measures__item {
    width: 100%;
    max-width: 100%;
  }

  #custom-landing-page.clp-page--usage .clp-accordion-block__bar,
  #custom-landing-page.clp-page--usage .clp-accordion-block__bar--tall,
  #custom-landing-page.clp-page--usage .clp-accordion-block__bar--medium,
  #custom-landing-page.clp-page--usage .clp-accordion-block__bar--short {
    padding: 14px 16px 40px 16px;
    min-height: 0;
  }

  #custom-landing-page.clp-page--usage .clp-accordion-block__chevron-wrap {
    width: 56px;
    height: 30px;
    right: 10px;
    bottom: 10px;
  }

  #custom-landing-page.clp-page--usage .clp-accordion-block__chevron {
    width: 24px;
  }

  #custom-landing-page.clp-page--usage .clp-accordion-block__chevron--toggle {
    width: 22px;
    height: 22px;
  }

  #custom-landing-page.clp-page--usage .clp-registration__hang {
    margin-top: -1.25rem;
    padding-top: 3.5rem;
  }

  #custom-landing-page.clp-page--usage .clp-registration__avatar {
    display: none;
  }

  #custom-landing-page.clp-page--usage .clp-registration__hang .clp-bordered-list__item:first-child {
    padding-right: 10px;
  }

  #custom-landing-page.clp-page--usage .clp-usage-hero__image {
    width: auto;
    max-width: min(220px, 70%);
    height: auto;
    max-height: 320px;
  }

  #custom-landing-page.clp-page--usage .clp-usage-footer__image {
    width: auto;
    max-width: min(260px, 80%);
    height: auto;
    max-height: 240px;
    margin-inline: auto;
  }
}
