@import './lhg.css';

/* Design Token Mappings - Update this file if design system changes */

@layer base {
  /* Typography classes from Style Guide ******************* */


}

@layer utilities {

  /* Brand Colors */
  .bg-brand {
    background-color: var(--lhg-color-brand-primary, var(--maui-color-brand-primarys));
  }

  .bg-brand-secondary {
    background-color: var(--lhg-color-brand-secondary, var(--maui-color-brand-secondary));
  }

  .text-brand {
    color: var(--lhg-color-brand-primary, var(--maui-color-brand-primary));
  }

  .text-brand-secondary {
    color: var(--lhg-color-brand-secondary, var(--maui-color-brand-secondary));
  }

  .border-brand {
    border-color: var(--lhg-color-brand-primary, var(--maui-color-brand-primary));
  }

  .bg-brand-gradient {
    background: var(--lhg-gradient-brand-core-blue, var(--maui-gradient-brand-core-blue));
  }

  /* LHG Specific Colors */
  .bg-deep-blue {
    background-color: var(--lhg-color-brand-deep-blue);
  }

  .bg-white {
    background-color: var(--lhg-color-brand-white);
  }

  .text-deep-blue {
    color: var(--lhg-color-brand-deep-blue);
  }

  .text-white {
    color: var(--lhg-color-brand-white);
  }

  .text-primary {
    color: var(--lhg-color-text-primary);
  }

  .text-secondary {
    color: var(--lhg-color-text-secondary);
  }

  .border-deep-blue {
    border-color: var(--lhg-color-brand-deep-blue);
  }

  /* LHG Sand Tints */
  .bg-sand-tint-2 {
    background-color: #F5EFE7;
  }

  .bg-blue-tint-2 {
    background-color: #E5F1FF;
  }

  /* LHG Core Colors */
  .bg-lhg-core-blue {
    background-color: var(--lhg-color-brand-core-blue);
  }

  .bg-lhg-deep-blue {
    background-color: var(--lhg-color-brand-deep-blue);
  }

  .bg-lhg-light-blue {
    background-color: var(--lhg-color-brand-light-blue);
  }

  .bg-lhg-red {
    background-color: var(--lhg-color-brand-red);
  }

  .bg-lhg-teal {
    background-color: var(--lhg-color-brand-teal);
  }

  .bg-lhg-purple {
    background-color: var(--lhg-color-brand-purple);
  }

  .bg-lhg-sand {
    background-color: var(--lhg-color-brand-sand);
  }


  /* LHG Grays */
  .bg-lhg-gray-25 {
    background-color: var(--lhg-color-brand-gray-25);
  }

  .bg-lhg-gray-100 {
    background-color: var(--lhg-color-brand-gray-100);
  }

  .bg-lhg-gray-300 {
    background-color: var(--lhg-color-brand-gray-300);
  }

  .bg-lhg-gray-500 {
    background-color: var(--lhg-color-brand-gray-500);
  }

  .bg-lhg-gray-800 {
    background-color: var(--lhg-color-brand-gray-800);
  }

  .text-lhg-gray-300 {
    color: var(--lhg-color-brand-gray-300);
  }

  .text-lhg-gray-500 {
    color: var(--lhg-color-brand-gray-500);
  }

  .text-lhg-gray-800 {
    color: var(--lhg-color-brand-gray-800);
  }

  /* LHG Border Colors */
  .border-lhg-gray-25 {
    border-color: var(--lhg-color-brand-gray-25);
  }

  .border-lhg-gray-100 {
    border-color: var(--lhg-color-brand-gray-100);
  }

  .border-lhg-gray-300 {
    border-color: var(--lhg-color-brand-gray-300);
  }

  .border-lhg-gray-500 {
    border-color: var(--lhg-color-brand-gray-500);
  }

  .border-lhg-red {
    border-color: var(--lhg-color-brand-red);
  }

  /* LHG Gradients */
  .bg-lhg-gradient-core-blue {
    background-image: var(--lhg-gradient-brand-core-blue);
  }

  .bg-lhg-gradient-light-blue {
    background-image: var(--lhg-gradient-brand-light-blue);
  }

  .bg-lhg-gradient-red {
    background-image: var(--lhg-gradient-brand-red);
  }

  .bg-lhg-gradient-teal {
    background-image: var(--lhg-gradient-brand-teal);
  }

  .bg-lhg-gradient-purple {
    background-image: var(--lhg-gradient-brand-purple);
  }

  .bg-lhg-gradient-sand {
    background-image: var(--lhg-gradient-brand-sand);
  }

  /* Semantic Colors */
  .bg-midnight {
    background-color: var(--maui-color-brand-midnight);
  }

  .bg-whale {
    background-color: var(--maui-color-brand-whale-blue);
  }

  .bg-marble {
    background-color: var(--maui-color-brand-marble-blue);
  }

  .text-midnight {
    color: var(--maui-color-brand-midnight);
  }

  .text-whale {
    color: var(--maui-color-brand-whale-blue);
  }

  .text-marble {
    color: var(--maui-color-brand-marble-blue);
  }

  .footer-divider {
    color: rgba(255, 255, 255, 0.20);
  }

  /* Feedback Colors */
  .bg-success {
    background-color: var(--maui-color-brand-green);
  }

  .bg-success-light {
    background-color: var(--maui-color-brand-green-light);
  }

  .bg-error {
    background-color: var(--maui-color-brand-red);
  }

  .bg-error-light {
    background-color: var(--maui-color-brand-red-light);
  }

  .bg-warning {
    background-color: var(--maui-color-brand-pale-yellow);
  }

  .text-success {
    color: var(--maui-color-brand-green);
  }

  .text-success-light {
    color: var(--maui-color-brand-green-light);
  }

  .text-error {
    color: var(--maui-color-brand-red);
  }

  .text-error-light {
    color: var(--maui-color-brand-red-light);
  }

  .text-warning {
    color: var(--maui-color-brand-pale-yellow);
  }

  .border-success {
    border-color: var(--maui-color-brand-green);
  }

  .border-error {
    border-color: var(--maui-color-brand-red);
  }

  /* Typography - Font Families */
  .font-headline {
    font-family: var(--lhg-font-family-head, var(--maui-font-family-headline));
  }

  .font-copy {
    font-family: var(--maui-font-family-copy);
  }

  .font-body {
    font-family: var(--lhg-font-family-text, var(--maui-font-family-body));
  }


  /* Typography - Font Weights */
  .font-thin {
    font-weight: var(--maui-font-weight-thin);
  }

  .font-light {
    font-weight: var(--maui-font-weight-light);
  }

  .font-regular {
    font-weight: var(--maui-font-weight-regular);
  }

  .font-bold {
    font-weight: var(--maui-font-weight-bold);
  }



  /* Hide scrollbar but keep functionality */
  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
}

@layer components {

  /* Content Width Constraint */
  .content-constrained {
    max-width: 1440px;
    /* or 1200px if you prefer */
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }

  @media (max-width: 768px) {
    .content-constrained {
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  /* Card Typography */
  .card-title {
    font-family: var(--lhg-font-family-head);
    font-size: 28px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--lhg-color-brand-deep-blue);

  }

  .card-body {
    font-family: var(--lhg-font-family-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--lhg-color-brand-deep-blue);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Text content styling */
  .cvc-text {
    color: var(--Muted-Deep-Blue, #05164D);
    font-family: "LHG Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
  }

  .cvc-text p {
    margin-bottom: 2rem;
  }

  .cvc-text p:last-child {
    margin-bottom: 0;
  }

  .cvc-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
  }

  .cvc-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: bold;
  }

  .cvc-text h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: bold;
  }

  .cvc-text h5 {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.0rem;
    font-weight: normal;
  }

  .cvc-text ul,
  .cvc-text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }

  .cvc-text li {
    margin-bottom: 0.5rem;
  }

  .cvc-text a {
    color: var(--lhg-color-brand-primary);
    text-decoration: underline;
  }

  .cvc-text strong {
    font-weight: bold;
  }

  .cvc-text em {
    font-style: italic;
  }

  .big-headline {
    color: var(--Muted-Deep-Blue, #05164D);
    font-family: "LHG Head";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    /* 62.4px */
  }

  @media (max-width: 1023px) {
    .big-headline {
      font-size: 36px;
      line-height: 130%;
      /* 46.8px */
    }
  }

  .subtext {
    font-size: 14px;
    color: #999999;
    /* margin-top: 16px; */
    text-align: left;
  }

  /* Link styles */
  .link-underlined {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* Card hover effects */
  .card-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: visible !important;
  }

  .card-hover::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    bottom: -80px;
    pointer-events: auto;
    z-index: -1;
  }

  .card-hover:hover {
    transform: translateY(-48px);
    margin-bottom: -32px;
  }

  .card-spacer {
    height: 0;
    transition: height 0.3s ease;
  }

  .card-hover:hover .card-spacer {
    height: 32px;
  }

  .card-read-more {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .card-hover:hover .card-read-more {
    opacity: 1;
  }

  .card-hover::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    bottom: -80px;
    pointer-events: auto;
    z-index: -1;
  }

  /* Carousel line indicators with larger click area */
  .carousel-line {
    position: relative;
  }

  .carousel-line::before {
    content: '';
    position: absolute;
    top: -12px;
    /* Extends 12px above */
    bottom: -12px;
    /* Extends 12px below */
    left: -4px;
    /* Extends 4px left */
    right: -4px;
    /* Extends 4px right */
    /* Total clickable area: 40px wide x 26px tall */
  }

  /* Card Carousel Padding and Snap Adjustments */

  #card-carousel {
    scroll-padding-left: 20px;
    scroll-padding-right: 20px;
    padding-right: 20px;
  }

  /* Remove snap-start from cards and apply via CSS instead */
  #card-carousel .snap-start {
    scroll-snap-align: start;
  }

  @media (min-width: 768px) {
    #card-carousel {
      padding-right: 80px !important;
      scroll-padding-left: 80px;
      scroll-padding-right: 80px;
    }
  }

  /* Modal Styles */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  .modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }

  .modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 32px;
    width: 720px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .modal-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    color: #666;
    flex-shrink: 0;
    margin-left: 16px;
  }

  .modal-close:hover {
    color: #000;
  }

  .modal-body img {
    margin-top: 16px;
  }

  .modal-body p:first-child {
    margin-top: 0;
  }

  /* Teaser aspect ratio */
  .aspect-teaser {
    aspect-ratio: 1280 / 500;
    position: relative;
  }

  .teaser-root {
    position: relative;
    overflow: hidden;
  }

  .teaser-altitude-shape {
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 88.98%;
    height: auto;
    aspect-ratio: 1139 / 500;
    max-width: none;
    display: block;
    pointer-events: none;
    z-index: 0;
  }

  .language-box {
    display: inline-flex;
    height: 48px;
    padding: 8px 12px;
    align-items: center;
    gap: 16px;

    white-space: nowrap;
    line-height: 1;

    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  .language-box svg,
  .language-box a svg {
    flex: 0 0 auto;
    display: block;
  }

  .language-box:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.50);
  }

  /* Base Button Styles */
  .btn {
    display: inline-flex;
    height: 56px;
    padding: 18px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    font-family: "LHG Text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
  }

  .btn:hover {
    border-radius: 12px;
  }

  /* Primary Button */
  .btn-primary {
    background: var(--CTA-CTA-Blue, #2D5FE4);
    color: var(--Grey-scale-White, #FFF);
  }

  .btn-primary:hover {
    background: #244CB6;
  }

  .btn-primary:active {
    background: var(--CTA-CTA-Blue, #2D5FE4);
  }

  .btn-primary.btn-disabled,
  .btn-primary:disabled {
    background: var(--Grey-scale-Gray-200, #C9C5C1);
    color: var(--Grey-scale-Gray-400, #94908D);
    cursor: not-allowed;
    border-radius: 8px;
  }

  /* Secondary Button */
  .btn-secondary {
    background: transparent;
    border: 1px solid rgba(5, 22, 77, 0.50);
    color: var(--Muted-Deep-Blue, #05164D);
  }

  .btn-secondary:hover {
    border-color: var(--Muted-Deep-Blue, #05164D);
  }

  .btn-secondary:active {
    background: #EAEFFC;
    border-color: var(--Muted-Deep-Blue, #05164D);
  }

  .btn-secondary.btn-disabled,
  .btn-secondary:disabled {
    background: var(--Grey-scale-Gray-100, #E3E1DE);
    color: var(--Grey-scale-Gray-400, #94908D);
    cursor: not-allowed;
    border-radius: 8px;
  }

  /* Primary Invert Button */
  .btn-primary-invert {
    background: white;
    color: var(--Muted-Deep-Blue, #05164D);
  }

  .btn-primary-invert:hover {
    background: var(--Grey-scale-Gray-100, #E3E1DE);
  }

  .btn-primary-invert:active {
    background: white;
  }

  .btn-primary-invert.btn-disabled,
  .btn-primary-invert:disabled {
    background: rgba(255, 255, 255, 0.30);
    color: rgba(255, 255, 255, 0.50);
    cursor: not-allowed;
    border-radius: 8px;
  }

  /* Secondary Invert Button */
  .btn-secondary-invert {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.50);
    color: white;
  }

  .btn-secondary-invert:hover {
    border-color: white;
  }

  .btn-secondary-invert:active {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
  }

  .btn-secondary-invert.btn-disabled,
  .btn-secondary-invert:disabled {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.50);
    cursor: not-allowed;
    border-radius: 8px;
  }

  /* Typography - Desktop Display */
  .text-display-s-light {
    font-family: "LHG Head", sans-serif !important;
    font-size: 56px !important;
    font-style: normal;
    font-weight: 300 !important;
    line-height: 110% !important;
  }

  .overlay-headline {
    font-size: 48px !important;
  }

  /* Mobile/Tablet variants */
  @media (max-width: 1200px) {
    .text-display-s-light {
      font-size: 40px !important;
      line-height: 115% !important;
    }

    .overlay-headline {
      font-size: 36px !important;
    }
  }

  @media (max-width: 1150px) {
    .text-display-s-light {
      font-size: 30px !important;
      line-height: 115% !important;
    }

    .overlay-headline {
      font-size: 26px !important;
    }
  }

  @media (max-width: 900px) {
    .text-display-s-light {
      font-size: 28px !important;
      line-height: 115% !important;
    }

    .overlay-headline {
      font-size: 26px !important;
    }
  }

  @media (max-width: 740px) {
    .text-display-s-light {
      font-size: 26px !important;
      line-height: 120% !important;
    }
  }

  /* END Typography classes from Style Guide ******************* */
}

.hero-text {
  color: var(--Grey-scale-White, #FFF);
  font-family: "LHG Text";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 26px */
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 16px;
    line-height: 145%;
  }
}

.hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.hero img {
  width: 100%;
  max-width: 2550px;
  /* Match your image's actual width */
  height: auto;
  display: block;
}

.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero picture img,
.hero>img {
  width: 100%;
  height: 100%;
  max-width: none;
  /* remove intrinsic cap scaling */
  object-fit: cover;
  /* crop, don't scale down */
  object-position: center;
  display: block;
}

.breadcrumbs {
  color: var(--Grey-scale-White, #FFF);
  font-family: "LHG Text";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 21px */
}

a.footer-link {
  color: var(--Grey-scale-White, #FFF);
  font-family: "LHG Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 24px */
}

a.footer-link:hover {
  color: rgba(255, 255, 255, 0.20);
}

.footer-padding {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1024px) {
  .footer-padding {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.content-grid-3-1 {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 8.25rem;
  /* edit gap here */
}

@media (max-width: 1023px) {
  .content-grid-3-1 {
    grid-template-columns: 1fr;
    gap: 2rem;
    /* adjust as needed for mobile spacing */
  }
}

/* Constrain header to hero's max-width */
@media (min-width: 2550px) {
  .header {
    max-width: 4829px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    left: 0;
    right: 0;
  }

  .header>div {
    padding-left: calc((100vw - 2550px) / 2 + 80px);
    padding-right: calc((100vw - 2550px) / 2 + 80px);
  }
}

.cvc-text li {
  list-style-type: disc;
  margin-left: 0.5rem;
  /* indent list items */
  line-height: 150%;
  /* 24px */
}

.large-title {
  color: var(--Muted-Deep-Blue, #05164D);
  /* Desktop/Heading/Heading XL/Light */
  font-family: "LHG Head";
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 46.8px */
}

.large-title--small {
  font-size: 36px;
}

.large-title--medium {
  font-size: 40px;
}

.large-title--large {
  font-size: 48px;
}

@media (max-width: 749px) {
  .large-title--small {
    font-size: 24px;
  }

  .large-title--medium {
    font-size: 28px;
  }

  .large-title--large {
    font-size: 32px;
  }
}


.downloads-box {
  display: flex;
  width: 302px;
  padding: 32px 24px 40px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;

  border-radius: 16px;
  background: var(--Tints-Blue-2, #E5F1FF);
}

.downloads-box-headline {
  align-self: stretch;
  color: var(--Muted-Deep-Blue, #05164D);
  font-family: "LHG Head";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 31.2px */
  /* Desktop/Heading/Heading M/Light */
}

.downloads-box-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--CTA-CTA-Blue, #2D5FE4);
  font-family: "LHG Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
}

.downloads-box-link-icon {
  width: 13.166px;
  height: 13.101px;
  transform: rotate(90deg);
  align-items: flex-start;
}



.banner-title {
  color: #FFF;
  font-family: "LHG Head";
  font-size: 56px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  display: block;
  word-break: break-word;
}



/* Ticket banner: keep layout stable even if image aspect ratios change */
.banner-container {
  max-width: 100%;
  border-radius: 16px !important;
  overflow: hidden !important;
  max-width: 100%;
  clip-path: inset(0 round 16px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-panel {
  position: relative;
  flex: 1 1 0%;
  height: 350px;
  /* mobile */
  overflow: hidden;
  /* Ensure each panel also clips its content */
}

/* First panel - smaller height on mobile only */
@media (max-width: 767px) {
  .banner-panel:first-child {
    height: 250px;
  }
}

/* Second panel - larger height on mobile only */
@media (max-width: 767px) {
  .banner-panel:last-child {
    height: 605px;
  }
}

.banner-panel>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  /* display: block; */
}

/* Only make images absolute positioned on desktop where flex layout handles them */
@media (min-width: 768px) {
  .banner-panel {
    height: 700px;
    /* desktop/tablet */
  }

  .banner-panel>img {
    position: absolute;
    inset: 0;
  }
}

@media (max-width: 767px) {
  .banner-container {
    width: auto;
    height: auto;
    min-height: 300px;
  }

  .banner-panel:last-child>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    /* display: block; */
  }

  .banner-title {
    font-size: 36px;
  }
}

.large-card-headline {
  color: var(--Muted-Deep-Blue, #05164D);
  /* Desktop/Heading/Heading M/Medium */
  font-family: "LHG Head";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 31.2px */
}

@media (max-width: 749px) {
  .large-card-headline {
    font-size: 20px;
    line-height: 130%;
    /* 26px */
  }
}

.large-card-text {
  color: #05164D;
  font-family: "LHG Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 24px */
}

.card-link {
  color: var(--lhg-color-brand-core-blue, #2D5FE4);
  font-family: "LHG Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
}

.download-card-link {
  color: var(--lhg-color-brand-core-blue, #2D5FE4);
  font-family: "LHG Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
}

.download-image {
  background: var(--Grey-scale-Gray-25, #F9F8F8)
}

/* 682 -768 */
@media (min-width: 682px) and (max-width: 768px) {
  .banner-container {
    width: auto;
  }
}

@media (max-width: 681px) {
  .banner-container {
    width: 100%;
  }
}

/* Using different images for mobile / desktop */

.banner-img-mobile {
  display: block;
}

.banner-img-desktop {
  display: none;
}

@media (min-width: 768px) {
  .banner-img-mobile {
    display: none;
  }

  .banner-img-desktop {
    display: block;
  }
}

body {
  max-width: 2550px;
  margin: 0 auto;
}

.cvc-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  justify-content: space-between;
  align-items: center;
  min-height: 392px;
  /* inner content area height */
  background: var(--Grey-scale-White, #FFF);
  column-gap: 64px;
}

.cvc-feature-layout--swapped {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.cvc-feature-layout--swapped .cvc-feature-layout__content {
  order: 2;
}

.cvc-feature-layout--swapped .cvc-feature-layout__image {
  order: 1;
}

.cvc-feature-layout__content {
  min-width: 0;
  max-width: none;
  min-height: 392px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cvc-feature-layout__headline {
  margin: 0;
}

.cvc-feature-layout__text {
  color: var(--Muted-Deep-Blue, #05164D);
  font-family: "LHG Text";
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin: 24px 0 0 0;
}

.cvc-feature-layout__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* robust gap even if CMS wrappers interfere */
.cvc-feature-layout__buttons>* {
  margin: 0;
}

.cvc-feature-layout__image {
  /* display: flex; */
  width: 100%;
  min-width: 0;
  /* height: 389px; */
  justify-content: center;
  align-items: center;
  aspect-ratio: 519 / 389;
  /* flex-shrink: 0; */
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}

/* .cvc-feature-layout__image-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* important: target actual rendered img from Neos.ImageTag */
.cvc-feature-layout__image img,
.cvc-feature-layout__image-tag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@media (max-width: 1200px) {
  .cvc-feature-layout {
    column-gap: 32px;
  }
}

@media (max-width: 768px) {

  .cvc-feature-layout,
  .cvc-feature-layout--swapped {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-height: 0;
  }

  .cvc-feature-layout__content {
    width: 100%;
    min-height: 0;
  }

  .cvc-feature-layout__text {
    font-size: 18px;
    margin-top: 16px;
  }

  .cvc-feature-layout__buttons {
    margin-top: 24px;
  }

  .cvc-feature-layout__image {
    width: 100%;
    height: auto;
    aspect-ratio: 519 / 389;
  }

  /* Always image first on mobile */
  .cvc-feature-layout .cvc-feature-layout__image,
  .cvc-feature-layout--swapped .cvc-feature-layout__image {
    order: 1;
  }

  .cvc-feature-layout .cvc-feature-layout__content,
  .cvc-feature-layout--swapped .cvc-feature-layout__content {
    order: 2;
  }
}

/* Stats Boxes */
/* .stat-box {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    color: white;
    border-radius: 16px;
    background: linear-gradient(153deg, #3257BC 0%, #05164D 100%);
    background-color: #05164D;
  } */

.stats-container {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  flex-direction: row;
  padding: 64px 0px;
  background-color: #FFF;
}

/* Neos renders a ContentCollection wrapper inside stats-container */
.stats-container>.neos-contentcollection {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

/* Mid desktop: 3 columns before switching to tablet layout */
@media (max-width: 1439px) {
  .stats-container>.neos-contentcollection {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.stats-container>.neos-contentcollection>* {
  min-width: 0;
}

/* Box */
.stat-box {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(153deg, #3257BC 0%, #05164D 100%);
  background-color: #05164D;
}

.stat-box__topline {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-width: 222px;
}

.stat-box__value {
  color: #fff;
  font-family: "LHG Head";
  font-size: 88px;
  font-style: normal;
  font-weight: 250;
  line-height: 110%;
}

.stat-box__unit {
  display: flex;
  width: 60px;
  height: 96px;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  font-family: "LHG Head";
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  padding-bottom: 13px;
}

.stat-box__description {
  margin-top: 8px;
  color: #fff;
  font-family: "LHG Head";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

/* Tablet: 2x2 */
@media (max-width: 1200px) {
  .stats-container {
    padding: 48px 0px;
  }

  .stats-container>.neos-contentcollection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

/* Mobile: single column */
@media (max-width: 768px) {
  .stats-container {
    padding: 40px 0px;
    /* center content in container */
    display: flex;
    /* justify-content: center; */
  }

  .stats-container>.neos-contentcollection {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-box {
    width: 335px;
    width: auto;
    padding: 28px;
    gap: 16px;
  }

  .stat-box__topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .stat-box__value {
    font-size: 72px;
  }

  .stat-box__unit {
    height: 62px;
    font-size: 18px;
  }

  .stat-box__description {
    font-size: 14px;
  }
}

/* Footer */
.footer-headline {
  color: var(--Grey-scale-White, #FFF);
  /* Desktop/Display S/Light */
  font-family: "LHG Head";
  font-size: 56px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  /* 61.6px */
}

.footer-headline-textblock {
  max-width: 628px;
}

.footer-text {
  color: var(--Grey-scale-White, #FFF);

  /* Body M/Regular */
  font-family: "LHG Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

.back-to-top-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.00);
  color: #fff;
  transition: background-color .2s ease, border-color .2s ease;
}

.back-to-top-box:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.quote-container {
  padding: 100px 109px 100px 120px;
  display: flex;
  align-items: center;
  gap: 80px;
}

@media (max-width: 768px) {
  .quote-container {
    padding: 100px 0;
  }
}

.quote-content {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.quote-text {
  color: var(--Muted-Deep-Blue, #05164D);
  /* Desktop/Heading/Heading XL/Text */
  font-family: "LHG Text";
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 46.8px */
}

@media(max-width: 759px) {
  .quote-text {
    font-size: 26px;
    line-height: 130%;
    /* 33.8px */
  }
}

.textblock-text {

  color: var(--Muted-Deep-Blue, #05164D);
  font-family: "LHG Text";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

.textblock-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.two-column-info-grid {
  row-gap: 0;
}

.two-column-info-right-headline {
  display: none;
}

@media (min-width: 768px) {
  .two-column-info-grid {
    row-gap: 80px;
  }

  .two-column-info-right-headline {
    display: block;
  }
}

@media (max-width: 768px) {
  .textblock-text {
    font-size: 18px;
    line-height: 150%;
  }
}

.accordion {
  padding: 24px 0;
}

/* Trigger */
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 16px;
}

/* Title */
.accordion__title {
  color: var(--Muted-Deep-Blue, #05164D);
  font-family: "LHG Head";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  text-align: left;
  transition: color 0.25s ease-in-out;
}

/* Chevron */
.accordion__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion__chevron-open {
  display: none;
}

.accordion__chevron-closed {
  display: block;
}

/* Divider */
.accordion__trigger::after {
  display: none;
}

.accordion {
  border-bottom: 1px solid var(--lhg-color-gray-100, #E5E7EB);
}

/* Body */
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
  overflow: hidden;
}

.accordion__body>.accordion__content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Text */
.accordion__text {
  padding: 16px;
  color: var(--Muted-Deep-Blue, #05164D);
  font-family: "LHG Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  width: 628px;
  max-width: 100%;
}

/* Link */
.accordion__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 16px;
  padding-bottom: 16px;
  color: var(--CTA-CTA-Blue, #2D5FE4);
  font-family: "LHG Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}

.accordion__link:hover {
  text-decoration: underline;
}

/* Open state */
.accordion--open .accordion__title {
  color: var(--CTA-CTA-Blue, #2D5FE4);
}

.accordion--open .accordion__chevron-open {
  display: block;
}

.accordion--open .accordion__chevron-closed {
  display: none;
}

.accordion--open .accordion__body {
  grid-template-rows: 1fr;
}

/* */

/* Header Styles */
.header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.header-surface {
  color: white;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease,
    backdrop-filter 0.18s ease, -webkit-backdrop-filter 0.18s ease;
}

@media (min-width: 768px) {
  .header-desktop-sticky.header-hidden {
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
  }

  .header-desktop-sticky.header-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.header-transparent {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-transparent:hover {
  background: rgba(5, 22, 77, 0.18);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  color: white;
}

.header-tinted {
  background: rgba(5, 22, 77, 0.22);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  box-shadow: 0 8px 24px rgba(5, 22, 77, 0.12);
}

.header-tinted:hover {
  background: rgba(5, 22, 77, 0.28);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

body.has-open-menu-backdrop::before {
  opacity: 1;
  pointer-events: auto;
}


/* Mobile Navigation */
.mobile-bar,
.burger-menu,
.burger-line,
#mobile-nav-wrapper .mobile-menu,
#mobile-nav-wrapper .mobile-menu-viewport,
#mobile-nav-wrapper .mobile-menu-panel,
#mobile-nav-wrapper .mobile-menu-link,
#mobile-nav-wrapper .mobile-submenu-back,
#mobile-nav-wrapper .mobile-submenu-link {
  transition: all 0.3s ease;
}

#mobile-nav-wrapper {
  position: relative;
}

.mobile-bar {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  color: white;
}

.desktop-bar {
  background: transparent;
  color: white;
}

#mobile-nav-wrapper .mobile-menu {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: white;
  color: #05164D;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(5, 22, 77, 0.12);
}

#mobile-nav-wrapper.is-open .mobile-bar {
  background: white;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #05164D;
}

#mobile-nav-wrapper.is-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#mobile-nav-wrapper .burger-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: inherit;
}

#mobile-nav-wrapper .burger-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

#mobile-nav-wrapper .burger-line {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

#mobile-nav-wrapper .burger-line-top {
  top: 0;
}

#mobile-nav-wrapper .burger-line-middle {
  top: 8px;
}

#mobile-nav-wrapper .burger-line-bottom {
  top: 16px;
}

#mobile-nav-wrapper.is-open .burger-line-top {
  top: 8px;
  transform: rotate(45deg);
}

#mobile-nav-wrapper.is-open .burger-line-middle {
  opacity: 0;
}

#mobile-nav-wrapper.is-open .burger-line-bottom {
  top: 8px;
  transform: rotate(-45deg);
}

#mobile-nav-wrapper .mobile-menu-viewport {
  position: relative;
  overflow: hidden;
  height: 0;
}

#mobile-nav-wrapper .mobile-menu-panel {
  width: 100%;
  padding: 20px;
  background: #fff;
}

#mobile-nav-wrapper .mobile-menu-panel-main {
  position: relative;
  transform: translateX(0);
}

#mobile-nav-wrapper.is-submenu-open .mobile-menu-panel-main {
  transform: translateX(-100%);
}

#mobile-nav-wrapper .mobile-submenu-panel {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  pointer-events: none;
}

#mobile-nav-wrapper .mobile-submenu-panel.is-active {
  transform: translateX(0);
  pointer-events: auto;
}

#mobile-nav-wrapper .mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#mobile-nav-wrapper .mobile-submenu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 24px;
}

#mobile-nav-wrapper .mobile-menu-link,
#mobile-nav-wrapper .mobile-submenu-back,
#mobile-nav-wrapper .mobile-submenu-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 12px;
  color: #05164D;
  text-decoration: none;
  font-family: "LHG Text";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding-bottom: 12px;
}

#mobile-nav-wrapper .mobile-menu-link-button,
#mobile-nav-wrapper .mobile-submenu-back {
  background: transparent;
  border: 0;
  text-align: left;
}

#mobile-nav-wrapper .mobile-submenu-back {
  justify-content: flex-start;
  font-weight: 500;
}

#mobile-nav-wrapper .mobile-submenu-chevron {
  flex: 0 0 auto;
}

#mobile-nav-wrapper .mobile-menu .language-box {
  border-color: rgba(5, 22, 77, 0.2);
}

#mobile-nav-wrapper .mobile-menu .language-box,
#mobile-nav-wrapper .mobile-menu .language-box a,
#mobile-nav-wrapper .mobile-menu .language-box svg,
#mobile-nav-wrapper .mobile-menu .language-box svg path,
#mobile-nav-wrapper .mobile-menu .mobile-menu-link,
#mobile-nav-wrapper .mobile-menu .mobile-submenu-back,
#mobile-nav-wrapper .mobile-menu .mobile-submenu-link {
  color: #05164D;
}

#mobile-nav-wrapper .mobile-menu .language-box svg path,
#mobile-nav-wrapper .mobile-submenu-chevron path {
  stroke: currentColor;
}


.logo img {
  display: block;
  max-width: 184px;
  height: auto;
  user-select: none;
}

.logo-desktop img {
  display: block;
  max-width: 184px;
  height: auto;
  user-select: none;
}

.logo-mobile img {
  display: block;
  max-width: 160px;
  height: auto;
  user-select: none;
}

.logo-desktop a,
.logo-mobile a {
  cursor: pointer;
}

.footer .logo img {
  width: min(302px, 100%);
  max-width: 302px;
  height: auto !important;
}

/* Force mobile logo swap behavior */
#mobile-nav-wrapper .logo-mobile .mobile-logo-light {
  display: block !important;
}

#mobile-nav-wrapper .logo-mobile .mobile-logo-dark {
  display: none !important;
}

#mobile-nav-wrapper.is-open .logo-mobile .mobile-logo-light {
  display: none !important;
}

#mobile-nav-wrapper.is-open .logo-mobile .mobile-logo-dark {
  display: block !important;
}

/* Force desktop logo swap behavior */
#desktop-nav-wrapper .logo-desktop .desktop-logo-light {
  display: block !important;
}

#desktop-nav-wrapper .logo-desktop .desktop-logo-dark {
  display: none !important;
}

#desktop-nav-wrapper.is-open .logo-desktop .desktop-logo-light {
  display: none !important;
}

#desktop-nav-wrapper.is-open .logo-desktop .desktop-logo-dark {
  display: block !important;
}

/* Desktop submenu and header state */
.header-surface.has-open-menu {
  background: #fff;
  color: #05164D;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 12px 32px rgba(5, 22, 77, 0.12);
}

.header-surface.has-open-menu:hover {
  background: #fff;
}

.header-surface.has-open-menu .nav-link,
.header-surface.has-open-menu [data-menu-toggle],
.header-surface.has-open-menu .language-box,
.header-surface.has-open-menu .language-box a {
  color: #05164D !important;
}

.header-ticket-btn {
  height: 48px;
  padding: 8px 20px;
}

/* Tickets button state changes */
.header-surface.has-open-menu .header-ticket-btn {
  background: var(--CTA-CTA-Blue, #2D5FE4);
  color: var(--Grey-scale-White, #FFF) !important;
  border-color: var(--CTA-CTA-Blue, #2D5FE4);
}

.header-surface.has-open-menu .header-ticket-btn:hover {
  background: #244CB6;
  border-color: #244CB6;
}

.header-surface.has-open-menu #desktop-nav-wrapper [data-menu-toggle]:hover,
.header-surface.has-open-menu #desktop-nav-wrapper [data-menu-item] > a:hover {
  background: #E5F1FF;
}

.header-surface.has-open-menu .menu-item,
.header-surface.has-open-menu .menu-item > a,
.header-surface.has-open-menu nav ul,
.header-surface.has-open-menu nav ul li {
  color: #05164D !important;
}

.header-surface.has-open-menu .language-box {
  border-color: rgba(5, 22, 77, 0.2);
}

.header-surface.has-open-menu .language-box:hover {
  background: rgba(5, 22, 77, 0.06);
  border-color: rgba(5, 22, 77, 0.35);
}

.header-surface.has-open-menu .language-box svg {
  color: #05164D;
}

.header-surface.has-open-menu .language-box svg path {
  stroke: #05164D !important;
}

.header-surface.has-open-menu #desktop-nav-wrapper .logo-desktop .desktop-logo-light {
  display: none !important;
}

.header-surface.has-open-menu #desktop-nav-wrapper .logo-desktop .desktop-logo-dark {
  display: block !important;
}

.menu-item {
  position: relative;
}

/* Always reserve the padding so hover background never causes a layout jump */
#desktop-nav-wrapper [data-menu-toggle],
#desktop-nav-wrapper [data-menu-item] > a {
  padding: 8px 12px;
  border-radius: 8px;
}

/* Plain links are inline by default — make them a box so hover background fills correctly */
#desktop-nav-wrapper [data-menu-item] > a {
  display: inline-flex;
  align-items: center;
}

.menu-item > .submenu {
  display: none;
}

@keyframes submenu-fade-in {
  from {
    opacity: 0;
    transform: translateY(22px) translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(30px) translateX(-16px);
  }
}

[data-menu-toggle] .menu-chevron-open {
  display: none;
}

[data-menu-toggle] .menu-chevron-closed {
  display: block;
}

.menu-item.is-open [data-menu-toggle] .menu-chevron-open {
  display: block;
}

.menu-item.is-open [data-menu-toggle] .menu-chevron-closed {
  display: none;
}

.menu-item.is-open > .submenu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(30px) translateX(-16px);
  min-width: 200px;
  padding: 16px 48px 16px 20px;
  background: #fff;
  color: #05164D;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(5, 22, 77, 0.12);
  z-index: 60;
  animation: submenu-fade-in 0.2s ease 0.08s forwards;
}

.menu-item.is-open > .submenu li {
  list-style: none;
}

.menu-item.is-open > .submenu a {
  color: #05164D;
  display: block;
  padding: 6px 8px;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 8px;
}

.menu-item.is-open > .submenu a:hover {
  background: #E5F1FF;
}

.menu-item.is-open > .submenu .submenu-parent-link {
  font-weight: 600;
  padding-top: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(5, 22, 77, 0.1);
  margin-bottom: 8px;
}

.mobile-submenu-link.submenu-parent-link {
  font-weight: 600;
  padding-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(5, 22, 77, 0.1);
  margin-bottom: 10px;
}

/* Inquiry Form (reusable base) */
.cvc-inquiry-form {
  max-width: 760px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inquiry-form__row--triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.inquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inquiry-form__field--full {
  width: 100%;
}

.inquiry-form__label {
  color: var(--lhg-color-brand-deep-blue);
  font-family: var(--lhg-font-family-text);
  font-size: 14px;
  line-height: 1.3;
}

.inquiry-form__required {
  color: var(--lhg-color-brand-red);
}

.inquiry-form__input,
.inquiry-form__select,
.inquiry-form__textarea {
  width: 100%;
  border: 1px solid #95A8E5;
  border-radius: 8px;
  background: #F8FAFF;
  color: var(--lhg-color-brand-deep-blue);
  font-family: var(--lhg-font-family-text);
  font-size: 16px;
  line-height: 1.4;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form__input {
  min-height: 48px;
}

.inquiry-form__textarea {
  min-height: 200px;
  resize: vertical;
}

.inquiry-form__input:focus,
.inquiry-form__select:focus,
.inquiry-form__textarea:focus {
  outline: none;
  border-color: var(--lhg-color-brand-core-blue);
  box-shadow: 0 0 0 3px rgba(36, 63, 155, 0.14);
}

.inquiry-form__select-wrapper {
  position: relative;
}

.inquiry-form .iti {
  width: 100%;
}

.inquiry-form .iti input.inquiry-form__input {
  width: 100%;
}

.inquiry-form .iti--separate-dial-code .iti__selected-country {
  background: #EEF3FF;
  border: 1px solid #95A8E5;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  color: var(--lhg-color-brand-deep-blue);
  font-family: var(--lhg-font-family-text);
}

.inquiry-form .iti--separate-dial-code input.inquiry-form__input {
  border-radius: 0 8px 8px 0;
}

.inquiry-form .iti__country-list {
  z-index: 40;
  font-family: var(--lhg-font-family-text);
}

.inquiry-form__select {
  appearance: none;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, #243F9B 50%),
    linear-gradient(135deg, #243F9B 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.inquiry-form__actions {
  margin-top: 10px;
}

.inquiry-form__submit {
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  min-height: 48px;
  font-family: var(--lhg-font-family-text);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #3257BC;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.inquiry-form__submit:hover {
  background: #243F9B;
}

.inquiry-form__submit:active {
  transform: translateY(1px);
}

.inquiry-form__submit:disabled,
.inquiry-form__submit--loading {
  opacity: 0.72;
  cursor: wait;
}

.inquiry-form__status {
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 6px;
  font-family: var(--lhg-font-family-text);
  font-size: 14px;
}

.inquiry-form__status--hidden {
  display: none;
}

.inquiry-form__status--success {
  display: block;
  color: #0E6245;
  background: #E8F7EF;
  border: 1px solid #8ED2B6;
}

.inquiry-form__status--error {
  display: block;
  color: #8B1320;
  background: #FDECEE;
  border: 1px solid #E9A7AE;
}

@media (max-width: 900px) {
  .inquiry-form__row,
  .inquiry-form__row--triple {
    grid-template-columns: 1fr;
  }

  .inquiry-form__submit {
    width: 100%;
  }
}

.menu-item.is-open > .submenu .submenu-parent-link {
  font-weight: 600;
  padding-top: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(5, 22, 77, 0.1);
  margin-bottom: 8px;
}

.mobile-submenu-link.submenu-parent-link {
  font-weight: 600;
  padding-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(5, 22, 77, 0.1);
  margin-bottom: 10px;
}