body.body-with-admin-bar .site-header {
  top: 32px;

  @media only screen and (max-width: 782px) {
    top: 46px;
  }

  &.fixed {
    top: 32px;

    @media only screen and (max-width: 782px) {
      top: 46px;
    }
  }
}

.site-header {
  /* Header-specific styles */
  /* Note: Relies on variables and reset from ../global.css */
  background-color: var(--color-bg-white);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;

  &.site-header--sticky {
    background-color: var(--color-bg-white);
    box-shadow:
      0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 0.95;

    .site-header__container {
      /* Optional: compact height on scroll */
      padding-top: 8px;
      padding-bottom: 8px;
    }
  }

  /* Nested Child Elements (Standard CSS Nesting) */
  /* This allows for easy copy-pasting into EtchWP's inner-block editor */

  .site-header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 64px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 88px;
    gap: 64px;

    @media (max-width: 1024px) {
      padding: 12px 32px;
      gap: 32px;
    }

    @media (max-width: 768px) {
      padding: 12px 16px;
      height: 64px;
      justify-content: space-between;
    }
  }

  /* Logo */
  .site-header__logo {
    display: block;
    height: auto;
  }

  /* Desktop Navigation */
  .site-header__nav {
    /* No specific styles needed for wrapper */

    @media (max-width: 768px) {
      display: none;
    }
  }

  .site-header__menu {
    display: flex;
    gap: 32px;
  }

  .site-header__menu-link {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: normal;
    color: var(--color-text);
    transition: color 0.2s ease;

    /* Using pure CSS nesting for modifiers/states */
    &:hover,
    &[class*="--active"] {
      color: var(--color-accent);
    }
  }

  /* Header Actions */
  .site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
  }

  /* WPML Language Switcher Customization */

  /* Container Reset */
  .wpml-ls-statics-shortcode_actions,
  .wpml-ls-statics-shortcode_actions ul,
  .wpml-ls-statics-shortcode_actions li,
  .wpml-ls-statics-shortcode_actions a {
    background-image: none !important;
    border: none !important;
    /* padding: 0 !important; */
    margin: 0 !important;
    list-style: none !important;
    box-shadow: none !important;
  }

  .wpml-ls-statics-shortcode_actions {
    display: inline-block;
    position: relative;
  }

  .wpml-ls-legacy-dropdown-click {
    width: 75px !important;
  }
  /* Main Toggle Item */
  .wpml-ls-item-toggle,
  .wpml-ls-item-toggle a,
  .js-wpml-ls-item-toggle {
    display: flex !important;
    align-items: center !important;
    padding: 12px 16px !important;
    background-color: #fafafa !important;
    border-radius: 8px !important;
    color: #0f172a !important; /* Dark Blue */
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    transition:
      background-color 0.2s ease-out,
      border-radius 0.2s ease-out !important;
    cursor: pointer;
    min-width: 75px;
    width: 75px !important;
    position: relative;
    z-index: 1002; /* Above dropdown */
  }

  /* Chevron Arrow via CSS */
  .wpml-ls-item-toggle::after {
    content: "" !important;
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    margin-left: 4px !important;
    background-image: url("../assets/images/chevron-down.svg") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: transform 0.2s ease-out !important;
  }

  /* Remove default text arrows if WPML adds them */
  .wpml-ls-native::after {
    content: none !important;
  }

  /* Toggle Hover State */
  .wpml-ls-item-toggle:hover,
  .wpml-ls-item-legacy-dropdown-click:hover > .wpml-ls-item-toggle {
    background-color: #efefef !important;
  }

  /* OPEN STATE: Styles when the dropdown is active (using wpml classes or hover parent) */
  /* Note: Adjust selector based on whether it is click or hover mode. Assuming the parent li gets the state or we depend on hover for CSS fallback */
  /* OPEN STATE: Styles when the dropdown is active (using wpml classes) */
  .wpml-ls-item-legacy-dropdown-click.wpml-ls-open > .wpml-ls-item-toggle {
    background-color: #efefef !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .wpml-ls-item-legacy-dropdown-click.wpml-ls-open .wpml-ls-item-toggle::after {
    transform: rotate(180deg) !important;
  }

  .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
    border-top: unset;
    border: unset;
    position: static;
    margin-top: -2px;
  }

  /* Dropdown Menu Container */
  .wpml-ls-sub-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important; /* Right aligned usually looks better if width is constrained, alter if needed */
    left: 0 !important; /* Or match width */
    width: 100% !important;
    min-width: 100% !important;
    margin-top: 0px !important; /* Seamless flow */
    background-color: #efefef !important; /* Matches open toggle bg */
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    box-shadow: 0px 10px 12px rgba(120, 120, 120, 0.1) !important; /* Slightly offset shadow to avoid top leaking */
    overflow: hidden !important;
    z-index: 1001 !important;
    border: none !important;
    visibility: hidden; /* Default hidden, let WPML/CSS hover handle show */
    opacity: 0;
    transition:
      opacity 0.2s ease-out,
      visibility 0.2s;
  }

  /* Show Dropdown on Hover */
  /* Show Dropdown on Open (Click only) */
  .wpml-ls-item-legacy-dropdown-click.wpml-ls-open .wpml-ls-sub-menu {
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Dropdown Links */
  .wpml-ls-sub-menu a {
    display: block !important;
    padding: 12px 16px !important;
    background-color: transparent !important;
    color: #0f172a !important;
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease !important;
    text-align: left !important;
  }

  /* Dropdown Link Hover */
  .wpml-ls-sub-menu a:hover {
    background-color: #f5f5f5 !important;
    color: #0f172a !important;
  }

  /* Mobile Menu Toggle */
  .site-header__mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    padding: 0;
    width: 24px;
    height: 24px;
    position: relative; /* Container for absolute icons */
    z-index: 1100;

    @media (max-width: 768px) {
      display: block;
    }

    svg {
      position: absolute;
      top: 0;
      left: 0;
      transition:
        opacity 0.3s ease,
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* BURGER STATE (Default) */
    .site-header__icon-burger {
      opacity: 1;
      transform: rotate(0deg) scale(1);
    }

    .site-header__icon-close {
      opacity: 0;
      transform: rotate(-90deg) scale(0.5);
    }
  }
}

/* Mobile Menu Logic (Global) */
@media (max-width: 768px) {
  /* OPEN STATE */
  body.mobile-menu-open .site-header__icon-burger {
    opacity: 0 !important;
    transform: rotate(90deg) scale(0.5) !important;
  }

  body.mobile-menu-open .site-header__icon-close {
    opacity: 1 !important;
    transform: rotate(0deg) scale(1) !important;
  }
}

/* Mobile Navigation Overlay */
/* Moved out of .site-header to manage z-index context independent of header content */
.site-header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: var(--color-bg-white);
  z-index: 900; /* Behind Header (1000) */

  /* Animation: Slide down from top */
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1); /* Elegant finish */

  display: flex;
  flex-direction: column;

  /* Padding compensates for header height so content starts below */
  padding-top: 88px;

  @media (max-width: 1024px) {
    padding-top: 88px;
  }

  @media (max-width: 768px) {
    padding-top: 64px;
    /* Ensure it covers full width on mobile */
    width: 100%;
  }

  &.site-header__mobile-overlay--open {
    transform: translateY(0);
  }
}

.site-header__mobile-nav {
  padding: 24px 16px;
  background-color: var(--color-bg-white);
  height: 100%;
  overflow-y: auto;
  border-top: 1px solid #f0f0f0;
}

.site-header__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__mobile-menu-link {
  font-size: var(--font-size-mobile-menu, 24px); /* Fallback */
  font-weight: var(--font-weight-regular);
  display: block;
  width: 100%;
  padding: 12px 0;
  color: var(--color-text);
  text-decoration: none;

  &:hover {
    color: var(--color-accent);
  }
}
.site-hero {
  /* Hero Section Styles */
  /* Note: Relies on variables/reset from ../global.css */
  width: 100%;
  height: 680px;
  position: relative;
  color: #ffffff;

  @media (max-width: 768px) {
    height: 720px;
  }

  /* Nested Inner Content */

  .site-hero__slider {
    width: 100%;
    height: 100%;
    position: relative;
  }

  /* Pagination Position */
  .swiper-pagination {
    bottom: 32px !important;
  }

  /* Hero Pagination Color Override */
  .swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.7;
  }

  .swiper-pagination-bullet-active {
    background: var(--color-accent) !important;
    opacity: 1;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;

    @media (max-width: 768px) {
      align-items: flex-end;
      padding-bottom: 90px;
    }
  }

  /* Background Image */
  .site-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  /* Gradient Overlay */
  .site-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.7) 35%,
      rgba(15, 23, 42, 0) 100%
    );
    z-index: 2;
  }

  /* Content Wrapper (keeps text in grid) */
  .site-hero__content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    padding: 0 64px;

    @media (max-width: 1024px) {
      padding: 0 32px;
    }

    @media (max-width: 768px) {
      padding: 0 24px;
    }

    @media (min-width: 768px) {
      margin: auto auto 164px auto;
    }
  }

  .site-hero__content {
    max-width: 920px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    @media (max-width: 768px) {
      max-width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: auto; /* Let mobile grow naturally */
    }
  }

  .site-hero__title {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 24px;

    @media (max-width: 1024px) {
      font-size: 48px;
      line-height: 56px;
    }

    @media (max-width: 768px) {
      text-align: center;
      font-size: 52px;
      line-height: 56px;
    }
  }

  .site-hero__description {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 32px;
    max-width: 600px;

    @media (max-width: 768px) {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
  }

  .site-hero__title,
  .site-hero__description {
    will-change: transform, opacity;
  }

  .site-hero__actions {
    display: flex;
    gap: 16px;
    margin-top: auto; /* Push to bottom of container */

    gap: 16px;

    @media (max-width: 768px) {
      flex-direction: column;
      width: 100%;
      gap: 16px;
    }
  }

  .site-hero__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 48px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;

    @media (max-width: 768px) {
      width: 100%;
      color: #0f172a;
      line-height: 24px;
    }
  }

  .site-hero__btn--primary {
    background-color: var(--color-accent);
    color: var(--color-text);
    font-weight: 700;

    &:hover {
      background-color: #e5b600;
    }
  }

  .site-hero__btn--secondary {
    background-color: #ffffff;
    color: var(--color-text);
    font-weight: 600;

    &:hover {
      background-color: #f0f0f0;
    }
  }

  /* Fallback Layout (No JS) - Show only first slide */
  .site-hero__slider:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
  }

  /* Slide-change text animations (AOS handles initial page load) */
  .site-hero__title.hero-text-animating,
  .site-hero__description.hero-text-animating {
    animation: hero-text-shift 0.4s ease-out both;
  }

  .site-hero__title.hero-text-animating-out,
  .site-hero__description.hero-text-animating-out {
    animation: hero-text-shift-out 0.4s ease-out both;
  }
}
/* Technology Section Styles */

.site-technology {
  width: 100%;
  padding: 80px 64px;
  background-color: #fafafa;
  overflow: hidden;

  @media (max-width: 768px) {
    padding: 64px 24px;
    background-color: #ffffff;
  }

  /* Header */
  .site-technology__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 56px;
  }

  .site-technology__label {
    display: block;
    color: #374151;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: normal;
  }

  .site-technology__title {
    color: #0f172a;
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 400;
    line-height: 56px;
    max-width: 644px;

    @media (max-width: 768px) {
      font-size: 40px;
      line-height: 48px;
    }
  }

  /* Carousel Wrapper */
  .site-technology__carousel-wrapper {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    /* Wide screen constraint: show only part of the next cards */
    @media (min-width: 2000px) {
      max-width: 1700px; /* Allow checking "half a card" (~200px) on each side beyond 1440px content */
      overflow: hidden;
      margin: 0 auto;
    }
  }

  .site-technology__swiper {
    padding-bottom: 100px !important;
    overflow: visible !important;

    @media (max-width: 768px) {
      padding-bottom: 0 !important;

      .swiper-wrapper {
        /* align-items: flex-start; */
      }
    }
  }

  /* Pagination */
  .swiper-pagination {
    bottom: 46px !important;

    @media (max-width: 768px) {
      position: static !important;
      margin-top: 40px;
    }
  }

  /* Tech-specific pagination colors */
  .swiper-pagination-bullet {
    background: #374151 !important;
    opacity: 0.25; /* Tech opacity */
  }

  .swiper-pagination-bullet-active {
    background: var(--color-accent, #ffcb00) !important;
    opacity: 1;
  }

  .swiper-slide {
    height: auto;
    display: flex;
    width: auto;
  }

  /* Card Styles */
  .site-technology__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 2px 11.6px rgba(120, 120, 120, 0.19);
    width: 421px;
    display: flex;
    flex-direction: column;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;

    &:hover {
      box-shadow: 0 2px 15.6px 0 rgba(96, 96, 96, 0.28);
    }

    @media (max-width: 1024px) {
      /* Card width defaults to CSS defined width */
    }

    @media (max-width: 768px) {
      width: 100%;
      max-width: 100%; /* Stretches to fill container */
      border-radius: 20px;
      min-height: auto;
    }
  }

  .site-technology__card-inner {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;

    @media (max-width: 768px) {
      padding: 24px;
      gap: 16px;
    }
  }

  .site-technology__card-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .site-technology__pill {
    background: #ffcb00;
    border-radius: 8px;
    padding: 12px 16px;
    color: #0f172a;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    width: 100%;
    height: 80px;

    @media (max-width: 768px) {
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 24px;
      line-height: 28px;
    }
  }

  .site-technology__description {
    color: #374151;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 28px;
  }

  .site-technology__capabilities {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
      gap: 8px;
    }
  }

  .site-technology__capabilities-title {
    color: #374151;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    line-height: 28px;
  }

  .site-technology__list {
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
      gap: 8px;
    }
  }

  .site-technology__item {
    display: flex;
    align-items: flex-start;
    gap: 6px;

    color: #374151;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 18px;

    @media (max-width: 768px) {
      gap: 6px;
      font-size: 14px;
      line-height: 18px;
    }
  }

  .site-technology__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;

    @media (max-width: 768px) {
      width: 16px;
      height: 16px;
    }
  }

  /* Navigation Buttons */
  .site-technology__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #ffcb00;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;

    &:hover {
      background: #e5b600;
    }

    img {
      width: 32px;
      height: 32px;
    }

    &.swiper-button-disabled {
      opacity: 0.5;
      cursor: default;
      background: #ffe580;
    }

    @media (max-width: 1100px) {
      display: none;
    }
  }

  .site-technology__nav--prev {
    left: -41px;
    @media (min-width: 2000px) {
      left: 100px;
    }
  }

  .site-technology__nav--next {
    right: -41px;
    @media (min-width: 2000px) {
      right: 100px;
    }
  }
}
.site-about {
  /* About Section Styles */
  /* Note: Relies on variables/reset from ../global.css */

  width: 100%;
  padding: 80px 0;
  background-color: var(--color-bg-white);

  @media (max-width: 768px) {
    padding: 64px 24px;
  }

  /* Top Row: Intro + Image */
  .site-about__intro-wrapper {
    max-width: 1440px;
    margin: 0 auto 56px auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    gap: 64px;

    @media (max-width: 1024px) {
      padding: 0 32px;
    }

    @media (max-width: 768px) {
      flex-direction: column;
      padding: 0;
      gap: 40px;
      margin-bottom: 40px;
    }
  }

  /* Text Column */
  .site-about__text {
    flex: 1;
    max-width: 600px;

    @media (max-width: 768px) {
      max-width: 100%;
    }
  }

  .site-about__label {
    display: block;
    color: #374151;
    font-family: var(--font-display);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 16px;
  }

  .site-about__title {
    margin-bottom: 28px;

    @media (max-width: 768px) {
      font-size: 40px;
      line-height: 1.1;
      margin-bottom: 16px;
    }
  }

  .site-about__description {
    margin-bottom: 24px;

    p {
      margin-bottom: 24px;
    }

    p:last-child {
      margin-bottom: 0px;
    }

    strong {
      display: block;
      color: #0f172a;
      font-family: var(--font-primary);
      font-size: 22px;
      font-weight: 700;
      line-height: 32px;
      font-style: normal;
      margin-bottom: 24px;
    }

    p:not(:has(strong)) {
      color: #374151;
      font-family: var(--font-primary);
      font-size: 18px;
      font-weight: 300;
      line-height: 28px;
      font-style: normal;
    }
  }

  .site-about__btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-accent);
    color: #0f172a;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-transform: none;
    transition: background-color 0.2s;
    text-decoration: none;
    margin-top: 24px;

    &:hover {
      background-color: #e5b600;
    }

    .site-about__arrow-icon {
      margin-left: 8px;
      width: 32px;
      height: auto;
    }
  }

  /* Image Column */
  .site-about__image {
    flex: 1;
    width: 100%;

    .site-about__img-placeholder {
      width: 100%;
      height: 570px;
      background-color: #e0e0e0;
      border-radius: 12px;
      background-size: cover;
      background-position: center;

      @media (max-width: 768px) {
        height: 320px;
      }
    }
  }

  /* Bottom Row: Feature Cards */
  .site-about__cards {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    @media (max-width: 1024px) {
      padding: 0 32px;
      grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 768px) {
      padding: 0;
      grid-template-columns: 1fr;
    }
  }

  .site-about__card {
    background-color: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 11.6px 0 rgba(120, 120, 120, 0.19);
    transition:
      box-shadow 0.3s ease,
      transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);

    &.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    &:hover {
      box-shadow: 0 2px 15.6px 0 rgba(96, 96, 96, 0.28);
    }
  }

  /* Stagger delays */
  .site-about__card:nth-child(1) {
    transition-delay: 0.1s;
  }
  .site-about__card:nth-child(2) {
    transition-delay: 0.2s;
  }
  .site-about__card:nth-child(3) {
    transition-delay: 0.3s;
  }
  .site-about__card:nth-child(4) {
    transition-delay: 0.4s;
  }

  .site-about__card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .site-about__check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .site-about__card-title {
    color: #0f172a;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
  }

  .site-about__card-text {
    color: #374151;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
  }
}
/* liaa_section/style.css */

.liaa-section {
  background-color: #fafafa;
  width: 100%;
  display: flex;
  justify-content: center;

  .liaa-section__container {
    width: 100%;
    max-width: 1440px;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    @media (min-width: 1024px) {
      padding: 48px 64px;
    }
  }

  .liaa-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .liaa-section__image {
    width: 252px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .liaa-section__text {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #374151;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0;
  }
}
/* contacts_section/style.css */

.contacts-section {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;

  .contacts-section__container {
    width: 100%;
    max-width: 1440px;
    padding: 80px 64px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    @media (max-width: 768px) {
      padding: 64px 24px;
    }
  }

  .contacts-section__content {
    display: flex;
    width: 100%;
    gap: 64px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 40px;
    }
  }

  /* Left Column */
  .contacts-section__info {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 28px;

    @media (max-width: 768px) {
      gap: 16px;
      max-width: 100%;
      min-width: 100%;
    }
  }

  .contacts-section__header {
    @media (max-width: 768px) {
      padding-top: 32px;
    }
  }

  .contacts-section__eyebrow {
    color: var(--color-hover-text, #555);
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.33;
    display: block;
    margin-bottom: 16px;
  }

  .contacts-section__title {
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 56px;
    margin: 0;

    @media (max-width: 768px) {
      font-size: 40px;
      line-height: 48px;
    }
  }

  .contacts-section__description {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #374151;
  }

  .contacts-section__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;

    @media (max-width: 768px) {
      padding-left: 16px;
    }
  }

  .contact-item__icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    img {
      width: 40px;
      height: 40px;
      animation: pulse-halo-svg 2s infinite;
    }
  }

  .contact-item__text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-primary);
  }

  .contact-item__label {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 24px;
  }

  .contact-item__value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
  }

  /* Right Column: Form */
  .contacts-section__form-column {
    flex: 1;
    min-width: 320px;
    max-width: 644px;

    @media (max-width: 768px) {
      max-width: 100%;
      min-width: 100%;
    }
  }

  .contact-form {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 2px 12px rgba(120, 120, 120, 0.19);
    padding: 32px;
    font-family: var(--font-primary);
    transition: box-shadow 0.3s ease;

    &:hover {
      box-shadow: 0 2px 15.6px 0 rgba(96, 96, 96, 0.28);
    }

    @media (max-width: 768px) {
      padding: 20px;
    }
  }

  .contact-form__row {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 16px;
      margin-bottom: 16px;
    }
  }

  .contact-form__group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    gap: 8px; /* Added gap to ensure spacing between label and input */

    label {
      font-size: 16px;
      color: var(--color-text);
      margin-bottom: 8px;
      font-weight: 400;
      display: block; /* Ensure it takes width to push down */
    }

    /* Ensure CF7 span wrapper doesn't break flex layout */
    .wpcf7-form-control-wrap {
      display: block;
      width: 100%;
    }
  }

  .contact-form__group--full-width {
    min-width: 100%;
  }

  .contact-form__input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--color-border, #e3e3e3);
    background-color: #fff;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-text);
    outline: none;
    transition:
      box-shadow 0.2s,
      border-color 0.2s;

    &:focus {
      border-color: var(--color-accent);
    }
  }

  /* Simulation of the yellow border focus state */
  .contact-form__input-focused-simulation {
    border-color: var(--color-accent);
    box-shadow: 0px 4px 9px rgba(120, 120, 120, 0.05);
  }

  .contact-form__textarea {
    min-height: 140px;
    resize: vertical;
    font-weight: 300;

    @media (max-width: 768px) {
      min-height: 112px;
      padding-bottom: 76px;
    }
  }

  .contact-form__checkbox-row {
    margin-top: 24px;
    display: flex;
    align-items: center;
  }

  .contact-form__checkbox-wrapper {
    /* Handle CF7 structure: .wpcf7-form-control-wrap > .wpcf7-acceptance > .wpcf7-list-item > label */
    font-size: 14px;
    font-weight: 400;

    .wpcf7-form-control-wrap,
    .wpcf7-acceptance,
    .wpcf7-list-item,
    label {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0;
      width: auto;
    }

    .wpcf7-list-item {
      margin: 0;
    }

    input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 16px;
      height: 16px;
      border-radius: 4px;
      border: 1px solid #e3e3e3;
      cursor: pointer;
      display: grid;
      place-content: center;
      flex-shrink: 0; /* Prevent shrinking */

      &::before {
        content: "";
        width: 10px;
        height: 10px;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--color-text);
        transform-origin: center;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
      }

      &:checked::before {
        transform: scale(1);
      }
    }
  }

  .contact-form__submit-btn {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    cursor: pointer;
    position: relative;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;

    @media (max-width: 768px) {
      width: 100%;
      justify-content: center;
    }
  }

  .contact-form__btn-circle {
    position: absolute;
    left: 24px;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0);
    display: none;
  }

  /* Social Banner */
  .social-banner {
    width: 100%;
    margin-top: 56px;
    background-color: var(--color-accent);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* width: calc(100% - 40px); */
    /* max-width: 1312px; */

    @media (max-width: 768px) {
      margin-top: 40px;
      width: auto;
      padding: 20px;
      align-self: stretch;
    }
  }

  .social-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 989px;
  }

  .social-banner__text {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 32px;
    color: var(--color-text);
    font-weight: 400;

    @media (max-width: 768px) {
      font-size: 22px;
      line-height: 28px;
    }
  }

  .social-banner__icons {
    display: flex;
    gap: 8px;
    margin-top: 8px;

    @media (max-width: 768px) {
      margin-top: 0;
    }
  }

  .social-banner__icon {
    width: 44px;
    height: 44px;
    display: block;
    transition: transform 0.2s;

    img {
      width: 100%;
      height: 100%;
    }

    &:hover {
      transform: scale(1.1);
    }
  }
}
.footer-section {
  background-color: #0f172a;
  color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-section__container {
  width: 100%;
  max-width: 1440px;
  padding: 32px 24px 24px 24px; /* Mobile padding */
  display: flex;
  flex-direction: column;
  gap: 0px; /* Mobile gap */
}

/* Top Section (Info + Nav + CTA) */
.footer-section__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Info Section (Logo + Desc) */
.footer-section__info {
  display: flex;
  flex-direction: column;
  align-items: center; /* Mobile center */
  gap: 32px;
}

.footer-section__brand {
  display: flex;
  flex-direction: column;
  align-items: center; /* Mobile center */
  gap: 16px;
  text-align: center;
}

.footer-section__logo {
  font-family: var(--font-display, "Bebas Neue"), sans-serif;
  font-size: 48px;
  line-height: 1.5; /* 72px / 48px */
  font-weight: 400;
}

.footer-section__description {
  font-family: var(--font-primary, "Source Sans 3"), sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  max-width: 100%;
}

/* Navigation */
.footer-section__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none; /* Reset list style */
  padding: 0;
  margin: 0;
  width: 100%; /* Ensure it fills the nav */
}

.footer-section__link {
  font-family: var(--font-primary, "Source Sans 3"), sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.footer-section__link:hover {
  opacity: 0.8;
}

/* CTA Box */
.footer-section__cta {
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  color: #ffffff;
  height: 100%;
  box-sizing: border-box;
  width: 100%;
}

.footer-section__cta-title {
  font-family: var(--font-display, "Bebas Neue", sans-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}

.footer-section__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-section__newsletter-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-section__newsletter-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-primary, "Source Sans 3", sans-serif);
  font-size: 16px;
  color: #374151;
  box-sizing: border-box;
  outline: none;
  text-align: center;
}
.footer-section__newsletter-input:focus {
  outline: 2px solid var(--color-accent, #ffcb00);
}

.footer-section__newsletter-btn {
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  background-color: var(--color-accent, #ffcb00);
  color: #0f172a;
  font-family: var(--font-primary, "Source Sans 3", sans-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-section__newsletter-btn:hover {
  opacity: 0.9;
}

.footer-section__newsletter-consent {
  font-family: var(--font-primary, "Source Sans 3", sans-serif);
  font-size: 12px;
  line-height: 1.5;
  color: #e0e0e0;
  margin: 0;
  text-align: center;
}

.footer-section__privacy-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-section__privacy-link:hover {
  text-decoration: none;
}

.footer-section__newsletter-message {
  font-family: var(--font-primary, "Source Sans 3", sans-serif);
  font-size: 14px;
}

.footer-section__newsletter-message:empty {
  display: none;
}

.footer-section__newsletter-message.success {
  color: #10b981;
}

.footer-section__newsletter-message.error {
  color: #ef4444;
}

/* Divider */
.footer-section__divider {
  width: 100%;
  opacity: 1;
  margin-top: 48px;
  margin-bottom: 24px;
}

.footer-section__divider svg {
  width: 100%;
  height: 1px;
  display: block;
}

/* Bottom Section */
.footer-section__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  font-family: var(--font-primary, "Source Sans 3"), sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.footer-section__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-section__copyright {
  margin: 0;
}

.footer-section__privacy-policy {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-section__privacy-policy:hover {
  opacity: 0.8;
}

.footer-section__dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-section__dev-text {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}

.footer-section__dev-logo-link {
  display: flex;
  align-items: center;
}

.footer-section__dev-logo {
  /* Ensure svg/img is sized if needed, usually auto is fine if svg is sized */
  height: auto;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

/* Desktop Responsive Styles */
@media (min-width: 1024px) {
  .footer-section__container {
    padding: 56px 64px 24px 64px;
    align-items: stretch; /* Stretch to fill width for bottom bar */
    gap: 0px;
  }

  .footer-section__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch; /* Stretch children to same height */
    width: 100%;
  }

  .footer-section__info {
    align-items: flex-start;
    gap: 32px;
    width: 680px; /* Fixed width from design */
    max-width: 50%; /* Prevent overflow if container is smaller */
  }

  .footer-section__brand {
    align-items: flex-start;
    text-align: left;
  }

  .footer-section__nav {
    justify-content: flex-start;
    gap: 16px;
  }

   .footer-section__cta {
    padding: 0;
    width: 600px; /* Adjusted width for the form */
    max-width: 50%;
    gap: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .footer-section__newsletter-row {
    flex-direction: row;
  }

  .footer-section__newsletter-input {
    flex: 1;
    text-align: left;
  }

  .footer-section__newsletter-btn {
    flex-shrink: 0;
  }

  .footer-section__newsletter-consent {
    text-align: left;
  }

  /* Bottom Section Desktop */
  .footer-section__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .footer-section__legal {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .footer-section__dev {
    justify-content: flex-start;
  }
}

/* =========================================
   Animations
   ========================================= */

@keyframes hero-text-shift {
  from {
    transform: translateY(var(--hero-text-offset, 0px));
  }
  to {
    transform: translateY(0);
  }
}

@keyframes hero-text-shift-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--hero-text-offset, 0px));
  }
}

/* Base state for all animated elements */
/* Base state for all animated elements */
/* .animate-on-scroll removed in favor of AOS */

/* Header & Hero Initial State (handled manually or via same class) */
.site-header {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.site-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text Page Styles (Privacy Policy, Terms, etc.) */
.text-page-hero {
  background-color: var(--color-bg-secondary, #fafafa);
  padding: 64px 0;

  .text-page-hero__container {
    max-width: 800px; /* Narrower container for better readability */
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Corrected: Left align content */
    text-align: left;
  }

  .text-page-hero__title {
    font-family: var(--font-display, "Bebas Neue", sans-serif);
    font-size: 52px;
    line-height: 1.08;
    font-weight: 400;
    color: var(--color-primary, #0f172a);
    margin-bottom: 16px;

    @media (max-width: 768px) {
      font-size: 40px;
    }
  }

  .text-page-hero__date {
    font-size: 18px;
    line-height: 1.56;
    color: #374151;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 300;
  }
}

.text-page-content {
  padding: 64px 0;
  background-color: var(--color-bg-white);

  .text-page-content__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Typography Styles for WYSIWYG Content */
  .text-page-content__typography {
    color: #374151;
    font-family: "Source Sans 3", sans-serif;
    line-height: 28px;
    font-size: 18px;
    font-weight: 300;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Source Sans 3", sans-serif;
      color: #374151;
      font-weight: 700;
      line-height: 1.56;
      margin-top: 28px;
      margin-bottom: 8px;
    }

    h1 {
      font-size: 36px;
    }
    h2 {
      font-size: 30px;
    }
    h3 {
      font-size: 18px;
    }

    p {
      margin-bottom: 24px;
    }

    ul {
      margin-bottom: 24px;
      padding-left: 24px;
      list-style-type: disc;

      li {
        margin-bottom: 8px;
        padding-left: 8px;

        &::marker {
          font-size: 0.7em;
        }
      }
    }

    ol {
      list-style-type: decimal;
      margin-bottom: 24px;
      padding-left: 24px;

      li {
        margin-bottom: 8px;
        padding-left: 8px;
      }
    }

    a {
      color: var(--color-accent);
      text-decoration: underline;
      transition: color 0.2s ease;

      &:hover {
        color: var(--color-text);
      }
    }

    strong,
    b {
      font-weight: 500;
    }

    /* Specific styling for the 'Data Controller' block effect if needed, or general box */
    .data-controller-box {
      background-color: #f9f9f9;
      padding: 24px;
      border-radius: 8px;
      margin: 24px 0;
    }
  }
}

/* Thank You Page Styles */
.thank-you-section {
  background-color: var(--color-bg-secondary, #fafafa);
  padding: 124px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh; /* Ensure it takes up good vertical space */

  .thank-you-section__container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 2px 12px rgba(120, 120, 120, 0.19);
    padding: 64px;
    max-width: 644px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    @media (max-width: 768px) {
      padding: 40px 20px;
    }
  }

  .thank-you-section__title {
    font-family: var(--font-display, "Bebas Neue", sans-serif);
    font-size: 52px;
    line-height: 1.08;
    font-weight: 400;
    color: var(--color-primary, #0f172a);
    margin-bottom: 16px;

    @media (max-width: 768px) {
      font-size: 40px;
    }
  }

  .thank-you-section__subtitle {
    font-family: var(--font-primary, "Source Sans 3", sans-serif);
    font-size: 22px;
    line-height: 32px;
    color: var(
      --color-text-secondary,
      #374151
    ); /* Dark gray for readability, close to design */
    margin-bottom: 32px;
  }

  .thank-you-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent, #ffcb00); /* Yellow from design */
    color: var(--color-primary, #0f172a); /* Contrast text color */
    font-family: var(--font-primary, "Source Sans 3", sans-serif);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;

    &:hover {
      background-color: #e6b800; /* Slightly darker on hover */
    }
  }
}
