
      :root {
      --primary-color: #74c0fc;
      --secondary-color: #1e90ff;
      --tertiary-color: #d0ebff;
      --light-bg: #ffffff;
      --text-dark: #212529;
      --text-medium: #495057;
      --light-gray: #f8f9fa;
      --cream: #fafbfc;
      --gradient-bg: linear-gradient(135deg, #74c0fc 0%, #1e90ff 45%, #d0ebff 100%);
      }
      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      body {

      font-family: 'DM Sans', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background: var(--light-bg);
      
      overflow-x: hidden;
      }
      .header_main_container {
      background: var(--gradient-bg);
      box-shadow: 
      0 4px 12px rgba(30, 144, 255, 0.14),
      0 8px 24px rgba(30, 144, 255, 0.08),
      0 12px 40px rgba(30, 144, 255, 0.05);
      filter: drop-shadow(0 2px 8px rgba(30, 144, 255, 0.10));
      }
      .top_ribbon_section {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      padding: 8px 0;
      border-bottom: 1px solid rgba(30, 144, 255, 0.14);
      }
      .ribbon_inner_wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      }
      .emergency_contact_info {
      display: flex;
      align-items: center;
      gap: 20px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-dark);
      }
      .phone_urgent_display {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-color);
      text-decoration: none;
      transition: all 0.3s ease;
      }
      .phone_urgent_display:hover {
      opacity: 0.8;
      }
      .main_banner_row {
      padding: 25px 0;
      position: relative;
      }
      .banner_content_flex {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: auto 1fr auto auto;
      align-items: center;
      gap: 30px;
      }
      .logo_brand_section {
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 10;
      position: relative;
      }
      .company_logo_img {
      height: 65px;
      width: 65px;
      object-fit: contain;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 8px;
      padding: 8px;
      box-shadow: 
      0 2px 8px rgba(30, 144, 255, 0.14),
      0 4px 16px rgba(30, 144, 255, 0.08);
      }
      .company_logo_emoji {
      height: 55px;
      width: 55px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.18);
      font-size: 30px;
      }

      .brand_name_display {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 24px;
      font-weight: 600;
      color: var(--light-bg);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      .primary_navigation_menu {
      display: flex;
      gap: 0;
      list-style: none;
      }
      .nav_menu_item {
      position: relative;
      }
      .nav_link_element {
      display: block;
      padding: 12px 20px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--light-bg);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      border-radius: 6px;
      margin: 0 2px;
      }
      .nav_link_element:hover {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(5px);
      }
      .action_cta_button {
      background: var(--light-bg);
      color: var(--primary-color);
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      font-family: 'Space Grotesk', sans-serif;
      box-shadow: 
      0 3px 12px rgba(176, 109, 143, 0.2),
      0 6px 24px rgba(30, 144, 255, 0.14);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      }
      .action_cta_button:hover {
      background: rgba(255, 255, 255, 0.95);
      transform: translateY(-2px);
      box-shadow: 
      0 6px 20px rgba(176, 109, 143, 0.25),
      0 12px 40px rgba(176, 109, 143, 0.15);
      }
      .contact_info_block {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
      }
      .contact_email_link {
      color: var(--light-bg);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: opacity 0.3s ease;
      }
      .contact_email_link:hover {
      opacity: 0.8;
      }
      .business_location_text {
      color: rgba(255, 255, 255, 0.8);
      font-size: 12px;
      font-weight: 400;
      }
      main {

      min-height: 60vh;
      
      overflow-x: hidden;
      }
      .footer_main_wrapper {
      background: var(--text-dark);
      color: var(--light-bg);
      margin-top: 60px;
      position: relative;
      overflow: hidden;
      }
      .footer_main_wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-bg);
      }
      .footer_content_grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px 30px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      }
      .company_info_section {
      display: flex;
      flex-direction: column;
      gap: 20px;
      }
      .footer_brand_flex {
      display: flex;
      align-items: center;
      gap: 15px;
      }
      .footer_logo_image {
      height: 55px;
      width: 55px;
      object-fit: contain;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      padding: 8px;
      }
      .footer_logo_emoji {
      height: 55px;
      width: 55px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.18);
      font-size: 30px;
      }

      .footer_company_name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--light-bg);
      }
      .contact_details_list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      }
      .contact_list_item {
      font-size: 14px;
      line-height: 1.4;
      }
      .footer_contact_link {
      color: var(--secondary-color);
      text-decoration: none;
      transition: color 0.3s ease;
      }
      .footer_contact_link:hover {
      color: var(--light-bg);
      }
      .service_links_column {
      display: flex;
      flex-direction: column;
      gap: 15px;
      }
      .footer_section_heading {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--light-bg);
      margin-bottom: 10px;
      }
      .service_links_list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      }
      .service_link_item {
      font-size: 14px;
      }
      .service_page_link {
      color: var(--secondary-color);
      text-decoration: none;
      transition: all 0.3s ease;
      }
      .service_page_link:hover {
      color: var(--light-bg);
      padding-left: 5px;
      }
      .footer_bottom_bar {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 0;
      text-align: center;
      }
      .copyright_notice_text {
      font-size: 13px;
      color: var(--secondary-color);
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      .cookie_consent_overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(3px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      }
      .cookie_popup_container {
      background: var(--light-bg);
      border-radius: 12px;
      padding: 30px;
      max-width: 520px;
      width: 100%;
      box-shadow: 
      0 8px 32px rgba(176, 109, 143, 0.2),
      0 16px 64px rgba(30, 144, 255, 0.14);
      position: relative;
      }
      .cookie_popup_heading {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 15px;
      }
      .cookie_popup_description {
      color: var(--text-medium);
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 25px;
      }
      .cookie_button_group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      }
      .cookie_accept_btn {
      background: var(--primary-color);
      color: var(--light-bg);
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
      }
      .cookie_accept_btn:hover {
      background: #1e90ff;
      transform: translateY(-1px);
      }
      .cookie_reject_btn {
      background: transparent;
      color: var(--text-medium);
      padding: 12px 20px;
      border: 1px solid #dee2e6;
      border-radius: 6px;
      font-weight: 500;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
      }
      .cookie_reject_btn:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
      }
      .cookie_policy_link {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: opacity 0.3s ease;
      }
      .cookie_policy_link:hover {
      opacity: 0.8;
      }
      .hidden {
      display: none !important;
      }
      @media (max-width: 1024px) {
      .banner_content_flex {
      grid-template-columns: auto 1fr;
      gap: 20px;
      }
      .contact_info_block {
      grid-column: 1 / -1;
      align-items: center;
      margin-top: 15px;
      }
      .action_cta_button {
      grid-column: 1 / -1;
      justify-self: center;
      margin-top: 10px;
      }
      }
      @media (max-width: 768px) {
      .video-hero {
position: relative;
width: 100vw;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
      .video-hero-title {
      letter-spacing: 0.12em;
      }
      }
      .emergency_contact_info {
      font-size: 12px;
      gap: 15px;
      }
      .main_banner_row {
      padding: 20px 0;
      }
      .banner_content_flex {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 15px;
      }
      .brand_name_display {
      font-size: 20px;
      }
      .primary_navigation_menu {
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
      }
      .nav_link_element {
      padding: 10px 16px;
      font-size: 14px;
      }
      .footer_content_grid {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 40px 20px 25px;
      }
      .cookie_popup_container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 85%;
      padding: 25px;
      }
      .cookie_popup_description {
      font-size: 16px;
      line-height: 1.6;
      }
      .cookie_button_group {
      flex-direction: column;
      align-items: stretch;
      }
      .cookie_accept_btn,
      .cookie_reject_btn {
      width: 100%;
      height: 50px;
      font-size: 18px;
      }
      .cookie_policy_link {
      font-size: 16px;
      }
      }
      @media (max-width: 480px) {
      .company_logo_img {
      height: 50px;
      width: 50px;
      }
      .brand_name_display {
      font-size: 18px;
      }
      .nav_link_element {
      padding: 8px 12px;
      font-size: 13px;
      }
      .action_cta_button {
      padding: 12px 20px;
      font-size: 13px;
      }
      }
      .index-main-wrapper {
      font-family: system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: #212529;
      background-color: #ffffff;
      }
      .hero-section-asymmetric {      min-height: 85vh;
      background: linear-gradient(135deg, #f8fbff 0%, #d0ebff 100%);
      display: flex;
      align-items: center;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
      }
      .hero-section-asymmetric::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: linear-gradient(45deg, rgba(30, 144, 255, 0.14), rgba(203, 179, 191, 0.1));
      clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 1;
      }
      .hero-content-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
      }
      .hero-text-block {
      padding-right: 40px;
      }
      .hero-main-heading {

.video-hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      }
.video-hero-media {
      position: absolute;
      inset: 0;
      }
.video-hero-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      }
.video-hero-overlay {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 55%), linear-gradient(to bottom, rgba(5, 21, 46, 0.78), rgba(1, 8, 20, 0.9));
      }
.video-hero-inner {
      max-width: 900px;
      text-align: center;
      color: #ffffff;
      }
.video-hero-logo {
      display: inline-flex;
      font-size: 40px;
      margin-bottom: 12px;
      }
.video-hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(40px, 6vw, 64px);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 14px;
      }
.video-hero-tagline {
      font-size: 18px;
      max-width: 640px;
      margin: 0 auto 24px;
      }
.video-hero-cta {
      margin-top: 10px;
      background: var(--primary-color);
      border-radius: 999px;
      padding-inline: 32px;
      }
@media (max-width: 768px) {
.video-hero {
min-height: 80vh;
}
.video-hero-title {
letter-spacing: 0.12em;
}
}

      font-size: 3.5rem;
      font-weight: 700;
      color: #212529;
      margin-bottom: 24px;
      line-height: 1.2;
      letter-spacing: -0.02em;
      }
      .hero-subtitle-text {
      font-size: 1.3rem;
      color: #495057;
      margin-bottom: 32px;
      font-weight: 400;
      }
      .hero-description-block {
      font-size: 1.1rem;
      color: #6c757d;
      margin-bottom: 40px;
      max-width: 500px;
      }
      .hero-cta-primary {      display: inline-block;
      background: linear-gradient(135deg, #1e90ff, #74c0fc);
      color: white;
      padding: 16px 32px;
      text-decoration: none;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 14px 30px rgba(30, 144, 255, 0.28);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .hero-cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(176, 109, 143, 0.4);
      color: white;
      }
      .hero-image-container {
      position: relative;
      height: 450px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      transform: rotate(2deg);
      }
      .hero-main-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      }
      .approach-section-diagonal {
      padding: 100px 0;
      background: linear-gradient(45deg, #ffffff 0%, #f5f6fa 100%);
      position: relative;
      transform: skewY(-2deg);
      margin: 60px 0;
      }
      .approach-content-wrapper {
      transform: skewY(2deg);
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
      }
      .approach-main-title {
      font-size: 2.8rem;
      color: #212529;
      margin-bottom: 20px;
      font-weight: 700;
      }
      .approach-subtitle {
      font-size: 1.2rem;
      color: #1e90ff;
      margin-bottom: 50px;
      font-weight: 500;
      }
      .approach-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 60px;
      }
      .approach-card-item {
      background: white;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(30, 144, 255, 0.14);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 4px solid #d0ebff;
      }
      .approach-card-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(176, 109, 143, 0.15);
      border-left-color: #1e90ff;
      }
      .approach-card-title {
      font-size: 1.4rem;
      color: #212529;
      margin-bottom: 16px;
      font-weight: 600;
      }
      .approach-card-text {
      font-size: 1rem;
      color: #495057;
      line-height: 1.7;
      }
      .layerbrett-expertise-split {
      padding: 80px 0;
      background: #fafbfc;
      }
      .expertise-container-max {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      .expertise-split-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      }
      .expertise-text-section {
      padding-right: 20px;
      }
      .expertise-section-title {
      font-size: 2.5rem;
      color: #212529;
      margin-bottom: 24px;
      font-weight: 700;
      line-height: 1.3;
      }
      .expertise-highlight-text {
      font-size: 1.2rem;
      color: #1e90ff;
      margin-bottom: 30px;
      font-weight: 500;
      }
      .expertise-description {
      font-size: 1.1rem;
      color: #495057;
      margin-bottom: 35px;
      line-height: 1.7;
      }
      .expertise-features-list {
      list-style: none;
      padding: 0;
      margin-bottom: 40px;
      }
      .expertise-feature-item {
      padding: 12px 0;
      font-size: 1rem;
      color: #343a40;
      position: relative;
      padding-left: 30px;
      }
      .expertise-feature-item::before {
      content: '▸';
      color: #1e90ff;
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 12px;
      }
      .expertise-image-wrapper {
      position: relative;
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      }
      .expertise-showcase-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      }
      .layer-brett-process-cards {
      padding: 100px 0;
      background: white;
      }
      .process-cards-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
      }
      .process-main-heading {
      font-size: 2.6rem;
      color: #212529;
      margin-bottom: 60px;
      font-weight: 700;
      }
      .process-masonry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
      }
      .process-card-tall {
      background: linear-gradient(135deg, #f8f9fa, #ffffff);
      padding: 40px 25px;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(30, 144, 255, 0.10);
      border: 1px solid #d0ebff;
      transition: all 0.3s ease;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      }
      .process-card-short {
      background: linear-gradient(135deg, #ffffff, #f5f6fa);
      padding: 35px 25px;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(30, 144, 255, 0.10);
      border: 1px solid #d0ebff;
      transition: all 0.3s ease;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      }
      .process-card-tall:hover, .process-card-short:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(176, 109, 143, 0.12);
      border-color: #74c0fc;
      }
      .process-card-number {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #1e90ff, #74c0fc);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.3rem;
      margin: 0 auto 20px;
      }
      .process-card-heading {
      font-size: 1.3rem;
      color: #212529;
      margin-bottom: 16px;
      font-weight: 600;
      }
      .process-card-content {
      font-size: 0.95rem;
      color: #495057;
      line-height: 1.6;
      }
      .monitoring-showcase-section {
      padding: 90px 0;
      background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
      position: relative;
      }
      .monitoring-showcase-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      .monitoring-content-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      }
      .monitoring-image-section {
      position: relative;
      height: 380px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
      }
      .monitoring-main-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      }
      .monitoring-text-content {
      padding-left: 30px;
      }
      .monitoring-section-heading {
      font-size: 2.4rem;
      color: #212529;
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.3;
      }
      .monitoring-brand-emphasis {
      font-size: 1.1rem;
      color: #1e90ff;
      margin-bottom: 25px;
      font-weight: 600;
      }
      .monitoring-description-text {
      font-size: 1.1rem;
      color: #495057;
      margin-bottom: 30px;
      line-height: 1.7;
      }
      .monitoring-benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 35px;
      }
      .monitoring-benefit-item {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(30, 144, 255, 0.08);
      border-left: 3px solid #d0ebff;
      font-size: 0.95rem;
      color: #343a40;
      }
      .monitoring-cta-link {
      display: inline-block;
      background: linear-gradient(135deg, #1e90ff, #74c0fc);
      color: white;
      padding: 14px 28px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      }
      .monitoring-cta-link:hover {
      background: linear-gradient(135deg, #1e90ff, #74c0fc);
      transform: translateY(-1px);
      color: white;
      }
      @media (max-width: 768px) {
      .hero-content-grid {
      grid-template-columns: 1fr;
      gap: 50px;
      text-align: center;
      }
      .hero-text-block {
      padding-right: 0;
      }
      .hero-main-heading {

.video-hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.video-hero-media {
position: absolute;
inset: 0;
}
.video-hero-video {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.85);
}
.video-hero-overlay {
position: relative;
z-index: 2;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
}
.video-hero-inner {
max-width: 900px;
text-align: center;
color: #ffffff;
}
.video-hero-logo {
display: inline-flex;
font-size: 40px;
margin-bottom: 12px;
}
.video-hero-title {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(40px, 6vw, 64px);
letter-spacing: 0.16em;
text-transform: uppercase;
margin-bottom: 14px;
}
.video-hero-tagline {
font-size: 18px;
max-width: 640px;
margin: 0 auto 24px;
}
.video-hero-cta {
margin-top: 10px;
background: var(--primary-color);
border-radius: 999px;
padding-inline: 32px;
}
@media (max-width: 768px) {
.video-hero {
min-height: 80vh;
}
.video-hero-title {
letter-spacing: 0.12em;
}
}

      font-size: 2.5rem;
      }
      .hero-image-container {
      height: 300px;
      transform: none;
      }
      .approach-section-diagonal {
      transform: none;
      margin: 40px 0;
      }
      .approach-content-wrapper {
      transform: none;
      }
      .approach-main-title {
      font-size: 2.2rem;
      }
      .approach-cards-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      }
      .expertise-split-layout {
      grid-template-columns: 1fr;
      gap: 40px;
      }
      .expertise-text-section {
      padding-right: 0;
      }
      .expertise-section-title {
      font-size: 2rem;
      }
      .process-main-heading {
      font-size: 2rem;
      }
      .process-masonry-grid {
      grid-template-columns: 1fr;
      }
      .monitoring-content-layout {
      grid-template-columns: 1fr;
      gap: 40px;
      }
      .monitoring-text-content {
      padding-left: 0;
      }
      .monitoring-section-heading {
      font-size: 2rem;
      }
      .monitoring-benefits-grid {
      grid-template-columns: 1fr;
      }
      }
      @media (max-width: 375px) {
      .hero-main-heading {

.video-hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.video-hero-media {
position: absolute;
inset: 0;
}
.video-hero-video {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.85);
}
.video-hero-overlay {
position: relative;
z-index: 2;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
}
.video-hero-inner {
max-width: 900px;
text-align: center;
color: #ffffff;
}
.video-hero-logo {
display: inline-flex;
font-size: 40px;
margin-bottom: 12px;
}
.video-hero-title {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(40px, 6vw, 64px);
letter-spacing: 0.16em;
text-transform: uppercase;
margin-bottom: 14px;
}
.video-hero-tagline {
font-size: 18px;
max-width: 640px;
margin: 0 auto 24px;
}
.video-hero-cta {
margin-top: 10px;
background: var(--primary-color);
border-radius: 999px;
padding-inline: 32px;
}
@media (max-width: 768px) {
.video-hero {
min-height: 80vh;
}
.video-hero-title {
letter-spacing: 0.12em;
}
}

      font-size: 2rem;
      }
      .approach-main-title {
      font-size: 1.8rem;
      }
      .expertise-section-title {
      font-size: 1.7rem;
      }
      .process-main-heading {
      font-size: 1.7rem;
      }
      .monitoring-section-heading {
      font-size: 1.7rem;
      }
      }
      .testimonial-circular-layout {
      padding: 80px 0;
      background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 50%, #d0ebff 100%);
      }
      .testimonial-container-centered {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
      }
      .testimonial-content-circle {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 60px;
      padding: 50px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(30, 144, 255, 0.14);
      position: relative;
      }
      .testimonial-content-circle::before {
      content: '';
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      background: linear-gradient(135deg, #1e90ff, #74c0fc, #d0ebff);
      border-radius: 25px;
      z-index: -1;
      opacity: 0.1;
      }
      .testimonial-image-block {
      text-align: center;
      }
      .testimonial-person-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 8px 20px rgba(176, 109, 143, 0.2);
      border: 4px solid white;
      }
      .testimonial-text-content {
      text-align: center;
      padding: 0 20px;
      }
      .testimonial-main-quote {
      font-size: 1.1rem;
      color: #343a40;
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
      position: relative;
      }
      .testimonial-main-quote::before {
      content: '"';
      font-size: 4rem;
      color: #74c0fc;
      position: absolute;
      top: -20px;
      left: -30px;
      font-family: Georgia, serif;
      }
      .testimonial-attribution {
      font-size: 1rem;
      color: #1e90ff;
      font-weight: 600;
      font-style: normal;
      }
      .testimonial-program-image {
      text-align: center;
      }
      .testimonial-context-image {
      width: 280px;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }
      .testimonial-cta-section {
      text-align: center;
      background: linear-gradient(135deg, #f5f6fa, #ffffff);
      padding: 40px;
      border-radius: 16px;
      border: 1px solid #d0ebff;
      }
      .testimonial-closing-heading {
      font-size: 2rem;
      color: #212529;
      margin-bottom: 16px;
      font-weight: 700;
      }
      .testimonial-closing-text {

.finofo-online-learning {
  padding: 70px 20px 80px;
  background: linear-gradient(145deg, #d0ebff 0%, #ffffff 50%, #d0ebff 100%);
}
.finofo-online-container {
  max-width: 1100px;
  margin: 0 auto;
}
.finofo-online-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  margin-bottom: 18px;
  color: var(--text-dark);
}
.finofo-online-intro,
.finofo-online-closing {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 900px;
  margin-bottom: 24px;
}
.finofo-online-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 20px;
}
.finofo-online-card {
  background: rgba(255,255,255,0.9);
  padding: 22px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 94, 156, 0.12);
  border: 1px solid rgba(116, 192, 252, 0.45);
}
.finofo-online-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e90ff;
}
.finofo-online-card p {
  font-size: 15px;
  color: var(--text-medium);
}

      font-size: 1.1rem;
      color: #495057;
      margin-bottom: 30px;
      }
      .testimonial-contact-link {
      display: inline-block;
      background: linear-gradient(135deg, #1e90ff, #74c0fc);
      color: white;
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      }
      .testimonial-contact-link:hover {
      background: linear-gradient(135deg, #1e90ff, #74c0fc);
      transform: translateY(-2px);
      color: white;
      }
      @media (max-width: 768px) {
      .testimonial-content-circle {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 30px;
      gap: 30px;
      }
      .testimonial-text-content {
      padding: 0;
      }
      .testimonial-context-image {
      width: 100%;
      max-width: 280px;
      height: 200px;
      }
      .testimonial-closing-heading {
      font-size: 1.6rem;
      }
      }
      @media (max-width: 375px) {
      .testimonial-closing-heading {
      font-size: 1.4rem;
      }
      .testimonial-main-quote {
      font-size: 1rem;
      }
      }
      
      /* Corrected full-screen video hero styles */
      .video-hero {
         position: relative;
         width: 100%;
         min-height: 100vh;
         display: flex;
         align-items: center;
         justify-content: center;
         overflow: hidden;
      }
      .video-hero-media {
         position: absolute;
         inset: 0;
      }
      .video-hero-video {
         width: 100%;
         height: 100%;
         object-fit: cover;
         display: block;
      }
      .video-hero-overlay {
         position: relative;
         z-index: 2;
         width: 100%;
         height: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 40px 20px;
         background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 55%),
                     linear-gradient(to bottom, rgba(5, 21, 46, 0.78), rgba(1, 8, 20, 0.9));
      }
      .video-hero-inner {
         max-width: 900px;
         text-align: center;
         color: #ffffff;
      }
      .video-hero-logo {
         display: inline-flex;
         font-size: 40px;
         margin-bottom: 12px;
      }
      .video-hero-title {
         font-family: 'Space Grotesk', sans-serif;
         font-size: clamp(40px, 6vw, 64px);
         letter-spacing: 0.16em;
         text-transform: uppercase;
         margin-bottom: 14px;
      }
      .video-hero-tagline {
         font-size: 18px;
         max-width: 640px;
         margin: 0 auto 24px;
      }
      .video-hero-cta {
         margin-top: 10px;
         background: var(--primary-color);
         border-radius: 999px;
         padding-inline: 32px;
      }

   

/* --- Project-specific additions --- */

/* --- Custom header layout --- */
.header_main_container {
  background: var(--gradient-bg);
  box-shadow:
    0 4px 12px rgba(30, 144, 255, 0.14),
    0 8px 24px rgba(30, 144, 255, 0.08),
    0 12px 40px rgba(30, 144, 255, 0.05);
}

.header_bar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header_brand {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.header_nav_block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1;
}

.primary_navigation_menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav_link_element {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.nav_link_element:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

/* language switcher inline with menu */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.lang-btn {
  border: none;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn.lang-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-blue);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .header_bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .header_nav_block {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .primary_navigation_menu {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Language visibility system */
[data-lang-text][data-lang="de"] {
  display: none;
}
html[data-lang="de"] [data-lang-text][data-lang="de"] {
  display: inline;
}
html[data-lang="de"] [data-lang-text][data-lang="en"] {
  display: none;
}

/* Hero & content tweaks */
.index-main-wrapper {
  padding-bottom: 56px;
}

.hero-section-asymmetric {
  padding-top: 56px;
}


/* Team section */
.team_section {
  padding: 80px 0 72px;
  background: #ffffff;
}

.team_header {
  max-width: 1120px;
  margin: 0 auto 32px;
  text-align: left;
}

.team_header h2 {
  font-size: clamp(28px, 3.6vw, 34px);
  margin-bottom: 8px;
}

.team_header p {
  font-size: 15px;
  color: var(--text-medium);
}

.team_grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1024px) {
  .team_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team_grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.team_card {
  background: #f5f5f6;
  border-radius: 0;
  padding: 0 0 18px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.team_card img {
  width: 100%;
  height: auto;
  display: block;
}

.team_card_inner {
  padding: 12px 18px 0;
}

.team_name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.team_role {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 4px;
}

.team_note {
  font-size: 12px;
  color: var(--text-medium);
}
/* Footer full-width columns */
.site_footer {
  background: #0b1120;
  color: #e2e8f0;
  margin-top: 40px;
}

.footer_inner_container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 20px 28px;
}

.footer_column_group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer_company_name {
  font-weight: 600;
  margin-bottom: 8px;
}

.footer_address_block,
.footer_contact_block {
  font-size: 14px;
  line-height: 1.5;
}

.footer_section_heading {
  font-size: 15px;
  margin-bottom: 10px;
}

.service_links_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service_page_link,
.footer_contact_link {
  color: #bfdbfe;
  text-decoration: none;
  font-size: 14px;
}

.service_page_link:hover,
.footer_contact_link:hover {
  text-decoration: underline;
}

.footer_bottom_bar {
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
}

/* Legal content blocks */
.section_page_header {
  max-width: 900px;
  margin: 0 auto 32px;
}

.section_page_header h1 {
  font-size: clamp(26px, 3.4vw, 32px);
  margin-bottom: 10px;
}

.section_page_header p {
  font-size: 15px;
  color: var(--text-medium);
}

.legal-content {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 14px;
  margin-bottom: 8px;
}

.legal-content p,
.legal-content li {
  font-size: 14px;
  color: var(--text-medium);
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
