/* ======================================================================
   ======================================================================
   GLOBAL BUTTON SYSTEM – PRODUCTION LOGIC (OUTLINE → BLUE ON HOVER)
   ======================================================================
   ====================================================================== */

/* Base button */
.button,
.button:hover {
  background-color: #0275B3;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 24px;
  height: 38px;
  line-height: 38px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: none;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* Outline button (alt variant) */
.button.button-alt,
.button.button-alt:hover {
  border: 1px solid #0275B3;
  color: #0275B3;
  background: transparent;
}

/* White outline variant */
.button.button-alt.white {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

/* White outline → blue fill on hover */
.button.button-alt.white:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

/* Black outline variant */
.button.button-alt.black {
  border: 1px solid #000000;
  color: #000000;
  background: transparent;
}

/* Black outline → blue fill on hover */
.button.button-alt.black:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.button,
.button:hover {
  white-space: nowrap; 
}

/* ======================================================================
   ======================================================================
   HERO COMPONENT – VIDEO BACKGROUND + CENTERED CONTENT
   ======================================================================
   ====================================================================== */

/* =========================
   HERO – BASE
========================= */
#cyp-hero {
  position: relative;
  min-height: 100vh;
  padding: 50px 0;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

/* =========================
   HERO VIDEO BACKGROUND
========================= */
.cyp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cyp-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   HERO OVERLAY
========================= */
.cyp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
  /* ízlés szerint */
}

/* =========================
   HERO INNER (CENTERING)
========================= */
.cyp-hero-inner {
  position: relative;
  z-index: 2;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;
}

/* =========================
   HERO CONTENT
========================= */
.cyp-hero-content {
  max-width: 960px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  text-align: center;
}

/* =========================
   TITLE
========================= */
.cyp-hero-title {
  font-family: 'Normalidad Wide', sans-serif;
  font-weight: 350;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;

  font-variation-settings: "wdth" 120;
}

.cyp-hero-title-highlight {
  font-weight: 600;
}

/* =========================
   TEXT
========================= */
.cyp-hero-text {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.46;
  letter-spacing: 0;
  text-align: center;

  color: #ffffff;
}

/* =========================
   MODAL – WIDE 16:9 + COVER (LITY)
========================= */
body.is-modal-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.lity {
  z-index: 20000000000000 !important;
}

.lity-wrap,
.lity-container {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.lity-content {
  position: relative !important;
  width: min(92vw, 1600px) !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  max-width: none !important;
  background: #000;
  pointer-events: none;
}

.lity-video-shell {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #000;
}

.lity-video,
.lity-content video {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover !important;
  object-position: center center;
  pointer-events: auto;
}

.lity-close {
  position: absolute !important;
  top: 16px;
  right: 16px;
  z-index: 200000001;
  width: 44px;
  height: 44px;
  line-height: 44px;
  color: #fff;
  font-size: 32px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: auto !important;
}

.lity-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.lity-content * {
  pointer-events: auto;
}

/* =========================
   RESPONSIVE 
========================= */
@media screen and (max-width: 992px) {
  .cyp-hero-title {
    font-size: 44px;
    line-height: 52px;
    letter-spacing: 0.10em;
  }

  .cyp-hero-text {
    font-size: 19px;
    line-height: 1.5;
    max-width: 680px;
  }

  .cyp-hero-content {
    gap: 22px;
  }
}

@media screen and (max-width: 768px) {
  .cyp-hero-title {
    font-size: 34px;
    line-height: 42px;
    letter-spacing: 0.06em;
  }

  .cyp-hero-text {
    font-size: 17px;
    line-height: 1.55;
    max-width: 100%;
  }

  .cyp-hero-content {
    gap: 22px;
  }
}

@media screen and (max-width: 576px) {
  .cyp-hero-title {
    font-size: 25px;
    line-height: 34px;
    letter-spacing: 0.04em;
  }

  .cyp-hero-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .cyp-hero-content {
    gap: 10px;
  }
}


/* ======================================================================
   ======================================================================
   BRAND STORY SECTION
   ======================================================================
   ====================================================================== */

/* =========================
   SECTION BASE
========================= */
#cyp-brand-story {
  background-color: #121E23;
  color: #ffffff;
  padding: 120px 0;
}

/* =========================
   CONTAINER
========================= */
.cyp-brand-story__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================
   MEDIA (IMAGE)
========================= */
.cyp-brand-story__media {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.cyp-brand-story__media img {
  width: 100%;
  max-width: 1070px;
  height: auto;
  display: block;
}

.cyp-brand-story__media-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 2;
}

/* =========================
   CONTENT
========================= */
.cyp-brand-story__content {
  margin-top: -38px;
  /* overlap */
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* =========================
   TITLE
========================= */
.cyp-brand-story__title {
  font-family: 'Normalidad Wide', 'Normalidad', sans-serif;
  font-weight: 350;
  font-size: 81px;
  line-height: 60px;
  letter-spacing: 24px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  z-index: 10;
}

/* =========================
   TEXT
========================= */
.cyp-brand-story__text {
  margin-top: 30px;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.46;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================================================================
   RESPONSIVE – FULL SCALE
   ====================================================================== */
/* ≤ 1699px */
@media screen and (max-width: 1699px) {
  #cyp-brand-story {
    padding: 112px 0;
  }

  .cyp-brand-story__media img {
    max-width: 1000px;
  }

  .cyp-brand-story__content {
    margin-top: -32px;
  }

  .cyp-brand-story__title {
    font-size: 72px;
    line-height: 58px;
    letter-spacing: 20px;
  }

  .cyp-brand-story__text {
    font-size: 22px;
    line-height: 1.46;
    max-width: 780px;
    margin-top: 26px;
  }
}

/* ≤ 1439px */
@media screen and (max-width: 1439px) {
  #cyp-brand-story {
    padding: 104px 0;
  }

  .cyp-brand-story__media img {
    max-width: 900px;
  }

  .cyp-brand-story__content {
    margin-top: -30px;
  }

  .cyp-brand-story__title {
    font-size: 64px;
    line-height: 54px;
    letter-spacing: 16px;
  }

  .cyp-brand-story__text {
    font-size: 20px;
    line-height: 1.5;
    max-width: 720px;
    margin-top: 24px;
  }
}

/* ≤ 1199px */
@media screen and (max-width: 1199px) {
  #cyp-brand-story {
    padding: 96px 0;
  }

  .cyp-brand-story__media img {
    max-width: 800px;
  }

  .cyp-brand-story__content {
    margin-top: -26px;
  }

  .cyp-brand-story__title {
    line-height: 50px;
    letter-spacing: 12px;
  }

  .cyp-brand-story__text {
    font-size: 18px;
    line-height: 1.2;
    max-width: 660px;
    margin-top: 22px;
  }
}

/* ≤ 992px */
@media screen and (max-width: 992px) {
  #cyp-brand-story {
    padding: 88px 0;
  }

  .cyp-brand-story__media img {
    max-width: 660px;
  }

  .cyp-brand-story__content {
    margin-top: -28px;
  }

  .cyp-brand-story__title {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: 14px;
  }

  .cyp-brand-story__text {
    line-height: 1.55;
    max-width: 620px;
    margin-top: 20px;
  }
}

/* ≤ 768px */
@media screen and (max-width: 768px) {
  #cyp-brand-story {
    padding: 76px 0;
  }

  .cyp-brand-story__media img {
    max-width: 580px;
  }

  .cyp-brand-story__content {
    margin-top: -26px;
  }

  .cyp-brand-story__title {
    font-size: 46px;
    line-height: 44px;
    letter-spacing: 8px;
  }

  .cyp-brand-story__text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-top: 16px;
  }
}

/* ≤ 680px */
@media screen and (max-width: 680px) {
  #cyp-brand-story {
    padding: 70px 0;
  }

  .cyp-brand-story__media img {
    max-width: 440px;
  }

  .cyp-brand-story__content {
    margin-top: -26px;
  }

  .cyp-brand-story__title {
    font-size: 38px;
    line-height: 38px;
    letter-spacing: 6px;
  }

  .cyp-brand-story__text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 440px;
    margin-top: 14px;
  }
}

/* ≤ 576px */
@media screen and (max-width: 576px) {
  #cyp-brand-story {
    padding: 64px 0;
  }

  .cyp-brand-story__content {
    margin-top: -15px;
  }

  .cyp-brand-story__title {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 4px;
  }

  .cyp-brand-story__text {
    font-size: 16px;
    line-height: 1.2;
    max-width: 350px;
    margin-top: 10px;
  }
}

/* 481–576px */
@media screen and (max-width: 576px) and (min-width: 481px) {
  .cyp-brand-story__media img {
    width: calc(100vw - 40px);
    max-width: 400px;
  }
}

/* 361–480px */
@media screen and (max-width: 480px) and (min-width: 361px) {
  .cyp-brand-story__media img {
    width: calc(100vw - 40px);
    max-width: 360px;
  }
}

/* ≤ 360px */
@media screen and (max-width: 360px) {
  .cyp-brand-story__media img {
    width: calc(100vw - 40px);
    max-width: 320px;
  }
}

/* ======================================================================
   ======================================================================
   BRAND COLLECTIVE SECTION
   ======================================================================
   ====================================================================== */

/* =========================
   BASE
========================= */
#lp-brand-collective {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  color: #121E23;
}

.lp-brand-collective__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 0 38px;
}

.lp-brand-collective__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* =========================
   LEFT CONTENT
========================= */
.lp-brand-collective__left {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}

/* Logos row */
.lp-brand-collective__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.lp-brand-collective__logos img {
  height: 60px;
  width: 60px;
  display: block;
}

/* Headline */
.lp-brand-collective__headline {
  font-family: 'Normalidad Wide', 'Normalidad', sans-serif;
  font-weight: 350;
  font-variation-settings: "wdth" 120;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 15px 0 0 0;

}

/* Highlight line */
.lp-brand-collective__highlight {
  font-family: 'Superior Title', serif;
  color: #0275B3;
  font-weight: 300;
  font-style: italic;
  font-size: 57px;
  line-height: 60px;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Intro text */
.lp-brand-collective__intro {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0;
  margin: 16px 0 0 0;
}

/* Brand mark */
.lp-brand-collective__mark img {
  max-height: 42px;
  width: auto;
  display: block;
  margin: 30px 0 0 0;
}

/* =========================
   RIGHT CONTENT
========================= */
.lp-brand-collective__right {
  background-color: #0F2F3A;
  color: #ffffff;

  padding: 80px 60px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;

  flex: 0 0 504px;
  margin: 80px 0 -60px 0;
}

/* Single pillar */
.lp-brand-collective__pillar {
  display: flex;
  flex-direction: column;
}

/* Pillar title row */
.lp-brand-collective__pillar-title {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

/* Emphasis */
.lp-brand-collective__pillar-emphasis {
  font-family: 'Superior Title', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 72px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #0275B3;
  margin: 0;
  display: inline-block;
}

/* Main title */
.lp-brand-collective__pillar-main {
  font-family: 'Normalidad Wide', 'Normalidad', sans-serif;
  font-weight: 350;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  margin-top: -22px;
}


/* Description */
.lp-brand-collective__pillar-desc {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}

.lp-brand-collective__pillar-desc::first-letter {
  text-transform: uppercase;
}

/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 1440px) {
  .lp-brand-collective__container {
    max-width: 1440px;
  }
}

@media screen and (max-width: 1300px) {
  .lp-brand-collective__container {
    max-width: 1440px;
  }

  .lp-brand-collective__left {
    display: flex;
    flex-direction: column;
    max-width: 600px;
  }

  .lp-brand-collective__logos img {
    height: 45px;
    width: 45px;
    display: block;
  }

  .lp-brand-collective__headline {
    font-size: 32px;
    line-height: 40px;
  }

  .lp-brand-collective__highlight {
    font-size: 38px;
    line-height: 50px;
  }

  .lp-brand-collective__intro {
    font-size: 18px;
  }

  .lp-brand-collective__pillar-emphasis {
    font-size: 64px;
    line-height: 56px;
  }

  .lp-brand-collective__pillar-main {
    font-size: 26px;
    line-height: 34px;
    margin-top: -24px;
  }

  .lp-brand-collective__pillar-desc {
    font-size: 22px;
  }
}

@media screen and (max-width: 1200px) {
  .lp-brand-collective__left {
    max-width: 600px;
  }

  .lp-brand-collective__intro {
    font-size: 18px;
  }

  .lp-brand-collective__headline {
    font-size: 32px;
    line-height: 44px;
  }

  .lp-brand-collective__highlight {
    font-size: 44px;
    line-height: 52px;
  }

  .lp-brand-collective__pillar-emphasis {
    font-size: 64px;
    line-height: 56px;
  }

  .lp-brand-collective__pillar-main {
    font-size: 36px;
    line-height: 44px;
    margin-top: -24px;
  }

  .lp-brand-collective__pillar-desc {
    font-size: 18px;
  }
}

@media screen and (max-width: 992px) {
  #lp-brand-collective {
    padding: 80px 0;
  }

  .lp-brand-collective__container {
    padding: 0 24px;
  }

  .lp-brand-collective__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
  }

  /* LEFT */
  .lp-brand-collective__left {
    max-width: 600px;
    margin: 0 0 0 50px;
  }

  /* RIGHT */
  .lp-brand-collective__right {
    flex: none;
    width: 100%;
    margin: 0;
    padding: 64px 48px;
  }
}

@media screen and (max-width: 768px) {
  #lp-brand-collective {
    padding: 64px 0;
  }

  .lp-brand-collective__inner {
    gap: 48px;
  }

  .lp-brand-collective__left {
    margin: 0 0 0 30px;
  }

  .lp-brand-collective__logos {
    gap: 24px;
  }

  .lp-brand-collective__headline {
    font-size: 30px;
    line-height: 40px;
  }

  .lp-brand-collective__highlight {
    font-size: 40px;
    line-height: 48px;
  }

  .lp-brand-collective__intro {
    font-size: 18px;
  }

  .lp-brand-collective__right {
    padding: 56px 40px;
  }

  .lp-brand-collective__pillar-emphasis {
    font-size: 56px;
    line-height: 50px;
  }

  .lp-brand-collective__pillar-main {
    font-size: 32px;
    line-height: 40px;
    margin-top: -22px;
  }

  .lp-brand-collective__pillar-desc {
    font-size: 20px;
    max-width: 400px;
  }
}

@media screen and (max-width: 576px) {
  #lp-brand-collective {
    padding: 48px 0;
  }

  .lp-brand-collective__container {
    padding: 0 16px;
  }

  /* LEFT */
  .lp-brand-collective__left {
    margin: 0;
  }

  .lp-brand-collective__logos {
    flex-wrap: nowrap;     
    white-space: nowrap;   
  }

  .lp-brand-collective__logos img {
    height: 32px;
    width: 32px;
    flex-shrink: 1;
    max-width: 100%;
  }

  .lp-brand-collective__headline {
    letter-spacing: 0.12em;
    font-size: 20px;
    line-height: 34px;
  }

  .lp-brand-collective__highlight {
    font-size: 30px;
    line-height: 32px;
    margin: 5px 0 0 0;
  }

  .lp-brand-collective__intro {
    font-size: 14px;
  }

  .lp-brand-collective__mark img {
    max-height: 30px;
  }

  /* RIGHT */
  .lp-brand-collective__right {
    padding: 40px 24px;
    gap: 32px;
  }

  .lp-brand-collective__pillar-emphasis {
    font-size: 44px;
    line-height: 40px;
  }

  .lp-brand-collective__pillar-main {
    font-size: 26px;
    line-height: 34px;
    margin-top: -18px;
  }

  .lp-brand-collective__pillar-desc {
    font-size: 16px;
    line-height: 1.2;
    max-width: 250px;
  }
}

/* ======================================================================
   ======================================================================
   PROCESS SECTION
   ======================================================================
   ====================================================================== */

#lp-process {
  padding: 120px 0;
  background: #121E23;
  color: #ffffff;
}

.lp-process__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px;
}

/* MAIN TITLE */
.lp-process__title {
  margin: 0 0 64px 23px;
  max-width: 1200px;
  font-family: 'Normalidad Wide', 'Normalidad', sans-serif;
  font-weight: 350;
  font-variation-settings: "wdth" 120;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* GRID */
.lp-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 53px;
  align-items: stretch;
}

/* CARD */
.lp-process__card {
  display: flex;
  flex-direction: column;
}

.lp-process__card-desc-wrap {
  min-height: var(--process-desc-height, auto);
}

.lp-process__media img {
  width: 252px;
  height: 258px;
  display: block;
}

/* TEXT */
.lp-process__card-title {
  opacity: 0.8;
  font-family: 'Superior Title', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 94px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #0275B3;
  margin: -70px 0 0 -5px;
}

.lp-process__card-subtitle {
  font-family: 'Normalidad Wide', 'Normalidad', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: -15px 0 0 0;
  z-index: 5;
}

.lp-process__card-desc {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0;
  margin: 15px 0 0 0;
}

.lp-process__card-meta {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0;
  margin-top: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 1439px) {
  .lp-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-process__media img {
    width: 350px;
    height: 350px;
  }

  .lp-process__card-desc,
  .lp-process__card-meta {
    max-width: 500px;
  }
}

@media screen and (max-width: 992px) {
  #lp-process {
    padding: 100px 0;
  }

  .lp-process__title {
    font-size: 32px;
    line-height: 44px;
    margin: 0 0 52px 0;
  }

  .lp-process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }

  .lp-process__card-title {
    font-size: 80px;
    line-height: 56px;
    margin-top: -60px;
  }

  .lp-process__card-subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-top: -12px;
  }

  .lp-process__card-desc,
  .lp-process__card-meta {
    font-size: 15px;
    line-height: 22px;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #lp-process {
    padding: 80px 0;
  }

  .lp-process__title {
    font-size: 26px;
    line-height: 40px;
    margin: 0 0 48px 0;
  }

  .lp-process__grid {
    gap: 48px;
  }

  .lp-process__media img {
    width: 220px;
    height: 220px;
  }

  .lp-process__card-title {
    font-size: 68px;
    line-height: 52px;
    margin-top: -65px;
  }

  .lp-process__card-subtitle {
    font-size: 18px;
    line-height: 1.4;
    white-space: normal;
  }

  .lp-process__card-desc,
  .lp-process__card-meta {
    font-size: 16px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 576px) {
  #lp-process {
    padding: 64px 0;
  }

  .lp-process__inner {
    padding: 0 16px;
  }

  .lp-process__title {
    font-size: 18px;
    line-height: 34px;
    margin: 0 0 40px 0;
  }

  .lp-process__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-process__media {
    width: 100%;
  }

  .lp-process__media img {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
  }

  .lp-process__card-title {
    font-size: 65px;
    line-height: 50px;
    margin-top: -65px;
  }

  .lp-process__card-subtitle {
    font-size: 18px;
    line-height: 1.4;
  }

  .lp-process__card-desc,
  .lp-process__card-meta {
    font-size: 18px;
    line-height: 1.2;
  }
}

/* ======================================================================
   ======================================================================
   SIGN UP SECTION
   ======================================================================
   ====================================================================== */
#lp-sign-up {
  width: 100%;
  padding: 120px 0;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
}

.lp-sign-up__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-sign-up__inner {
  max-width: 800px;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================
   TITLE
========================= */
.lp-sign-up__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.lp-sign-up__title-line {
  font-family: 'Normalidad Wide', 'Normalidad', sans-serif;
  font-weight: 350;
  font-variation-settings: "wdth" 120;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
}

.lp-sign-up__title-line--highlight {
  color: #0275B3;
}

/* =========================
   DESCRIPTION
========================= */
.lp-sign-up__description {
  max-width: 685px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  letter-spacing: 0;
  margin: 25px 0;
  color: #000000;
}

/* =========================
   FORM
========================= */
.lp-sign-up__form p {
  margin: 0;
}

.lp-sign-up__form {
  width: 100%;
  max-width: 685px;
  text-align: left;
}

.lp-sign-up__form__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-sign-up__form__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  gap: 4px;
}

.lp-sign-up__form__row {
  width: 100%;
}

.lp-sign-up__form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-sign-up__form__label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 0.9;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  color: #666666;
  text-align: left;
}

.lp-sign-up__form__input {
  display: block;
  height: 48px;
  width: 100%;
  max-width: 685px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #9f9f9f;
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  box-sizing: border-box;
  margin: 0;
}

.lp-sign-up__form__row--2col .lp-sign-up__form__input {
  max-width: 100%;
}

.lp-sign-up__form .wpcf7-form-control-wrap {
  display: block;
}

.lp-sign-up__form__input::placeholder {
  color: #999999;
}

.lp-sign-up__form__input:focus {
  outline: none;
  border: 2px solid #0275B3;
}

.lp-sign-up__form__actions {
  margin-top: 12px;
}

.lp-sign-up__form__submit {
  align-self: flex-start;
}

.lp-sign-up__form__recaptcha {
  margin-top: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 992px) {
  #lp-sign-up {
    padding: 100px 0;
    background-position: top center;
    background-size: auto 80%;
  }

  .lp-sign-up__container {
    padding: 0 24px;
  }

  .lp-sign-up__inner {
    max-width: 100%;
    margin-left: 0;
  }

  .lp-sign-up__title-line {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.14em;
  }

  .lp-sign-up__description {
    font-size: 20px;
    line-height: 28px;
    margin: 24px 0;
  }

  .lp-sign-up__form {
    max-width: 640px;
  }
}

@media screen and (max-width: 768px) {
  #lp-sign-up {
    padding: 80px 0;
    background-size: auto 70%;
  }

  .lp-sign-up__title {
    gap: 6px;
  }

  .lp-sign-up__title-line {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.12em;
  }

  .lp-sign-up__description {
    font-size: 18px;
    line-height: 26px;
    margin: 20px 0;
  }

  .lp-sign-up__form {
    max-width: 100%;
  }

  .lp-sign-up__form__input {
    height: 46px;
    font-size: 15px;
  }
}

@media screen and (max-width: 576px) {
  #lp-sign-up {
    background-image: none;
  }

  .lp-sign-up__container {
    padding: 0 16px;
  }

  .lp-sign-up__title-line {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  .lp-sign-up__description {
    font-size: 16px;
    line-height: 1.2;
    max-width: 320px;
  }

  .lp-sign-up__form__label {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .lp-sign-up__form__input {
    height: 44px;
    font-size: 16px;
    padding: 0 14px;
  }

  .lp-sign-up__form__actions {
    margin-top: 16px;
  }
}

/* ======================================================================
   ======================================================================
   CAREERS INTRO SECTION
   ======================================================================
   ====================================================================== */
#cyp-careers-intro {
  width: 100%;
  padding: 120px 0;
  background-color: #121E23;
}

/* =========================
   INNER WRAPPER
========================= */
.cyp-careers-intro-inner {
  max-width: 1400px;
  padding: 0 24px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.cyp-careers-intro-header {
  max-width: 900px;
  margin-bottom: 80px;
  margin-left: 50px;
}

/* Title */
.cyp-careers-intro-title {
  font-family: 'Normalidad Wide', 'Normalidad', sans-serif;
  font-weight: 350;
  font-variation-settings: "wdth" 120;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 24px 0;
}

/* Description */
.cyp-careers-intro-text p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  max-width: 827px;
  line-height: 1.46;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0 0 16px 0;
}

/* =========================
   GRID
========================= */
.cyp-careers-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* =========================
   CARD
========================= */
.cyp-careers-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Image */
.cyp-careers-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card title block */
.cyp-careers-card-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: -230px 0 0 50px;
}

/* Eyebrow */
.cyp-careers-card-eyebrow {
  font-family: 'Normalidad Wide', 'Normalidad', sans-serif;
  font-weight: 350;
  font-variation-settings: "wdth" 120;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Highlight word */
.cyp-careers-card-highlight {
  font-family: 'Superior Title', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 58px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #0275B3;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 1));
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  margin: -5px 0 0 0;
}

/* Card description */
.cyp-careers-card-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.46;
  max-width: 385px;
  letter-spacing: 0;
  color: #ffffff;
  margin: 70px 0 0 0;
}

/* =========================
   CTA
========================= */
.cyp-careers-intro-cta {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 1300px) {
  #cyp-careers-intro {
    padding: 100px 0;
  }

  .cyp-careers-intro-header {
    margin-left: 0;
    margin-bottom: 64px;
  }

  .cyp-careers-intro-title {
    font-size: 32px;
    line-height: 40px;
  }

  .cyp-careers-intro-text p {
    font-size: 22px;
  }

  .cyp-careers-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cyp-careers-card-title {
    margin: -160px 0 0 32px;
  }

  .cyp-careers-card-eyebrow {
    font-size: 42px;
    line-height: 50px;
  }

  .cyp-careers-card-highlight {
    font-size: 58px;
    line-height: 60px;
  }

  .cyp-careers-card-text {
    font-size: 20px;
    margin-top: 56px;
  }

  .cyp-careers-intro-cta {
    margin-top: 64px;
  }
}

@media screen and (max-width: 1080px) {
  .cyp-careers-card-title {
    margin: -220px 0 0 24px;
  }

  .cyp-careers-card-eyebrow {
    font-size: 48px;
    line-height: 50px;
  }

  .cyp-careers-card-highlight {
    font-size: 58px;
    line-height: 60px;
  }
}

@media screen and (max-width: 768px) {
  #cyp-careers-intro {
    padding: 80px 0;
  }

  .cyp-careers-intro-header {
    margin-bottom: 56px;
  }

  .cyp-careers-intro-title {
    font-size: 30px;
    line-height: 36px;
  }

  .cyp-careers-intro-text p {
    font-size: 20px;
  }

  .cyp-careers-cards {
    gap: 20px;
  }

  .cyp-careers-card-title {
    margin: -170px 0 0 24px;
  }

  .cyp-careers-card-eyebrow {
    font-size: 36px;
    line-height: 44px;
  }

  .cyp-careers-card-highlight {
    font-size: 48px;
    line-height: 52px;
  }

  .cyp-careers-card-text {
    font-size: 18px;
    margin-top: 48px;
  }

  .cyp-careers-intro-cta {
    margin-top: 56px;
  }
}

@media screen and (max-width: 576px) {
  #cyp-careers-intro {
    padding: 64px 0;
  }

  .cyp-careers-intro-inner {
    padding: 0 16px;
  }

  .cyp-careers-intro-header {
    margin-bottom: 48px;
  }

  .cyp-careers-intro-title {
    font-size: 25px;
    line-height: 34px;
    letter-spacing: 0.12em;
  }

  .cyp-careers-intro-text p {
    font-size: 14px;
  }

  .cyp-careers-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cyp-careers-card-title {
    margin: -115px 0 0 20px;
  }

  .cyp-careers-card-eyebrow {
    font-size: 26px;
    line-height: 34px;
  }

  .cyp-careers-card-highlight {
    font-size: 34px;
    line-height: 40px;
  }

  .cyp-careers-card-text {
    font-size: 16px;
    margin-top: 40px;
  }

  .cyp-careers-intro-cta {
    margin-top: 48px;
  }
}

/* ======================================================================
   FINAL CTA SECTION
====================================================================== */

/* =========================
   BASE
========================= */
#lp-final-cta {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
}

.lp-final-cta__inner {
  display: flex;
  min-height: 620px;
}

/* =========================
   LEFT / VISUAL
========================= */
.lp-final-cta__visual {
  flex: 1 1 50%;
  min-width: 0;
  position: relative;
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lp-final-cta__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(7, 24, 31, var(--overlay-opacity));
}

/* overlay content */
.lp-final-cta__visual-content {
  position: relative;
  z-index: 2;
  padding: 0 0 60px 0;
  max-width: 520px; 
}

/* BAL TITLE */
.lp-final-cta__visual-title {
  margin: 0;

  font-family: 'Normalidad', sans-serif;
  font-weight: 350;
  font-style: normal;
  font-size: 84px;
  line-height: 100px;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #ffffff;
}

/* BAL HIGHLIGHT */
.lp-final-cta__visual-highlight {
  margin-top: 8px;

  font-family: 'Superior Title', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 115px;
  line-height: 60px;
  letter-spacing: -0.02em;

  color: #0275B3;
}

/* =========================
   RIGHT / CONTENT
========================= */
.lp-final-cta__content {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-final-cta__content-inner {
  max-width: 580px;
  padding: 10px;
}

/* Subtitle (right side text) */
.lp-final-cta__title {
  margin: 0 0 32px 0;

  font-family: 'Normalidad Wide', sans-serif;
  font-weight: 350;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* CTA buttons */
.lp-final-cta__actions {
  display: flex;
  gap: 16px;
}

/* =========================
   RESPONSIVE (BASE)
========================= */
@media screen and (max-width: 1300px) {
  .lp-final-cta__visual-content {
    padding: 0 0 50px 60px;
  }
  .lp-final-cta__visual-title {
    font-size: 70px;
    line-height: 80px;
  }
  .lp-final-cta__visual-highlight {
    font-size: 90px;
    line-height: 50px;
  }

  .lp-final-cta__title {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.12em;
  }
}

@media screen and (max-width: 992px) {
  .lp-final-cta__inner {
    flex-direction: column;
    min-height: unset;
  }

  /* LEFT / VISUAL */
  .lp-final-cta__visual {
    flex: none;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: start;
  }

  .lp-final-cta__visual-content {
    padding: 64px 48px;
  }

  .lp-final-cta__visual-title {
    font-size: 64px;
    line-height: 78px;
    letter-spacing: 0.1em;
  }

  .lp-final-cta__visual-highlight {
    font-size: 88px;
    line-height: 56px;
  }

  /* RIGHT / CONTENT */
  .lp-final-cta__content {
    flex: none;
    justify-content: flex-start;
    padding: 80px 48px;
  }

  .lp-final-cta__content-inner {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .lp-final-cta__visual {
    min-height: 420px;
  }

  .lp-final-cta__visual-content {
    padding: 56px 32px;
  }

  .lp-final-cta__visual-title {
    font-size: 52px;
    line-height: 64px;
    letter-spacing: 0.1em;
  }

  .lp-final-cta__visual-highlight {
    font-size: 72px;
    line-height: 50px;
  }

  .lp-final-cta__content {
    padding: 64px 32px;
  }

  .lp-final-cta__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.1em;
  }

  .lp-final-cta__actions {
    gap: 12px;
  }
}

@media screen and (max-width: 576px) {
  .lp-final-cta__visual {
    min-height: 360px;
  }

  .lp-final-cta__visual-content {
    padding: 48px 22px;
  }

  .lp-final-cta__visual-title {
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.08em;
  }

  .lp-final-cta__visual-highlight {
    font-size: 54px;
    line-height: 40px;
  }

  .lp-final-cta__content {
    padding: 48px 16px;
  }

  .lp-final-cta__title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.08em;
  }

  .lp-final-cta__actions {
    flex-direction: row;
    gap: 12px;
  }
}
