*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white: #ffffff;
      --off-white: #e8e8e8;
      --dark: #080808;
      --nav-h: 64px;
      --slogan-spacing: 0.25em;
    }

    html, body {
      height: 100%;
      background: var(--dark);
      color: var(--white);
      font-family: 'Phosphat Solid', sans-serif;
      overflow-x: hidden;
      overflow-y: scroll;
      width: 100%;
      scroll-behavior: smooth;
    }

    html {
      scroll-behavior: smooth;
    }

    body.no-scroll {
      overflow: hidden !important;
    }

    
    .bg {
      position: fixed;
      inset: 0;
      background: url('img/Logo_BG.png') no-repeat center center;
      background-size: cover;
      z-index: 0;
    }
    .bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.55);
    }

    
    .page {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin-top: 0;
      padding-top: var(--nav-h);
      padding-bottom: 0;
      box-sizing: border-box;
      overflow-x: hidden;
      width: 100%;
    }
    #start {
      height: 100vh;
      margin-top: 0;
      padding-top: 0;
      justify-content: center;
    }

    
    nav {
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      flex-shrink: 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 300;
      transform: translateY(0);
      transition: transform 0.35s cubic-bezier(.77, 0, .175, 1);
      background-color: rgba(8, 8, 8, 0.6);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    nav.hidden {
      transform: translateY(-100%);
    }

    .nav-logo {
      display: inline-block;
      opacity: .55;
      transition: opacity .25s;
      text-decoration: none;
    }

    .nav-logo:hover {
      opacity: 1;
    }

    .nav-logo-img {
      height: 50px;
      width: auto;
      display: block;
      transition: opacity 0.25s ease; 
    }
    
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    
    .nav-links li {
      opacity: 0;
      transform: translateX(-22px);
      filter: blur(4px);
    }
    .nav-links li.nav-revealed {
      transition: opacity .65s cubic-bezier(.22,1,.36,1),
                  transform .65s cubic-bezier(.22,1,.36,1),
                  filter .65s cubic-bezier(.22,1,.36,1);
      opacity: 1;
      transform: translateX(0);
      filter: blur(0px);
    }
    .nav-links a {
      color: var(--off-white);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 500;
      opacity: .7;
      transition: opacity .25s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0; bottom: -3px;
      width: 0; height: 1px;
      background: var(--white);
      transition: width .3s;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active {
      opacity: 1;
    }
    .nav-links a.active::after {
      width: 100%;
      transition: width .45s cubic-bezier(.22,1,.36,1);
    }

    
    .hamburger {
      display: none;
      width: 48px;
      height: 48px;
      background: none;
      border: none;
      padding: 0;
      z-index: 300;   
      position: relative;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      touch-action: manipulation;
    }
    .hamburger svg {
      width: 36px;
      height: 36px;
      overflow: visible;
    }

    
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);   
      left: 0; right: 0; bottom: 0;
      background: rgb(5, 5, 5);
      z-index: 100;
      flex-direction: column;
      justify-content: center;
      padding: 0 40px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .45s cubic-bezier(.4,0,.2,1);
      overflow: hidden;
    }
    .mobile-menu.visible {
      opacity: 1;
      pointer-events: all;
    }
    
    .mobile-menu::before {
      content: '';
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      width: 75vw;
      height: 75vw;
      background: url('media/loko_logo.svg') no-repeat center center;
      background-size: contain;
      opacity: .04;
      pointer-events: none;
    }
    .mobile-menu-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .mobile-menu-item {
      border-bottom: 1px solid rgba(255,255,255,.08);
      opacity: 0;
      transform: translateX(-28px);
      filter: blur(6px);
      transition:
        opacity .6s cubic-bezier(.22,1,.36,1),
        transform .6s cubic-bezier(.22,1,.36,1),
        filter .6s cubic-bezier(.22,1,.36,1);
    }
    .mobile-menu.visible .mobile-menu-item { opacity: 1; transform: translateX(0); filter: blur(0); }
    .mobile-menu.visible .mobile-menu-item:nth-child(1) { transition-delay: .07s; }
    .mobile-menu.visible .mobile-menu-item:nth-child(2) { transition-delay: .15s; }
    .mobile-menu.visible .mobile-menu-item:nth-child(3) { transition-delay: .23s; }
    .mobile-menu.visible .mobile-menu-item:nth-child(4) { transition-delay: .31s; }
    .mobile-menu.visible .mobile-menu-item:nth-child(5) { transition-delay: .39s; }
    .mobile-menu-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      color: var(--off-white);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 500;
      opacity: .65;
      position: relative;
      transition: opacity .25s;
    }
    .mobile-menu-item a::after {
      content: '';
      position: absolute;
      left: 0; bottom: 18px;
      width: 0; height: 1px;
      background: var(--white);
      transition: width .35s cubic-bezier(.22,1,.36,1);
    }
    .mobile-menu-item a:hover,
    .mobile-menu-item a.active { opacity: 1; }
    .mobile-menu-item a:hover::after,
    .mobile-menu-item a.active::after { width: 100%; }
    .mobile-menu-item a span.arrow {
      font-size: 10px;
      letter-spacing: 0;
      opacity: .3;
      transition: opacity .25s, transform .25s;
    }
    .mobile-menu-item a:hover span.arrow { opacity: 1; transform: translateX(5px); }

    
    .stage {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 0;
      position: relative;
    }
    .stage-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      position: relative;
    }

    .scroll-btn-start {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0);
      border: 1px solid rgba(255, 255, 255, 0);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.7;
      transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s;
      backdrop-filter: blur(8px);
      z-index: 10;
      animation: bounce-down 2s infinite;
      touch-action: manipulation;
    }
    @media (hover: hover) {
      .scroll-btn-start:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0);
      }
    }
    .scroll-btn-start:active {
      opacity: 0.9;
      background: rgba(255, 255, 255, 0.25);
    }
    .scroll-btn-start.fade-out {
      opacity: 0 !important;
      pointer-events: none;
    }

    @keyframes bounce-down {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }
    #loko-logo {
      width: min(70vw, 70vh, 520px);
      height: min(70vw, 70vh, 520px);
      overflow: visible;
    }

    #p-left, #p-diag, #p-wheel, #p-base { opacity: 0; }

    .stage-slogan {
      margin-top: 20px;
      position: relative;
      top: -50px;
      font-size: clamp(0.4rem, 2vw, 1.1rem);
      letter-spacing: var(--slogan-spacing);
      text-indent: var(--slogan-spacing);
      text-transform: uppercase;
      text-align: center;
      color: white;
      white-space: nowrap;
      display: flex;
      width: 100%;
      justify-content: center;
      gap: 0.6em;
      transform-origin: center top;
      box-sizing: border-box;
    }

    .slogan-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(12px);
    }

    .section-content {
      padding: 80px 40px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    .section-content h2 {
      font-size: 48px;
      margin-bottom: 30px;
      letter-spacing: .1em;
    }
    .section-content p {
      font-size: 18px;
      line-height: 1.6;
      opacity: .8;
    }

    .section-title {
    padding: 80px 0 20px 40px; 
    font-size: 48px;
    letter-spacing: .1em;
    margin: 0;
    }

    .leistungen-content .section-title {
    padding-left: 0;
    }


    .arbeiten-container {
      display: flex;
      flex-direction: column;
      justify-content: center; 
      margin: 0 auto;
      min-height: auto; 
      padding: 0px 40px 80px 40px;
      box-sizing: border-box;
      max-width: 95%; 
      width: 100%; 
    }

    .arbeiten-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .arbeiten-header .subtitle {
      color: #47e0ff95;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 12px;
    }

    .arbeiten-header h2 {
      font-size: 2.4rem;
      margin: 0;
      line-height: 1.2;
    }

    .arbeiten-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px; 
      width: 100%;
    }

    .work-card {
      position: relative;
      height: 380px; 
      background-size: cover;
      background-position: center;
      background-color: rgb(20, 20, 20);
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      z-index: 1;
    }

    .work-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: inherit;
      background-size: cover;
      background-position: center;
      z-index: -1;
      transition: transform 0.5s cubic-bezier(.25, .8, .25, 1);
    }

    @media (hover: hover) {
      .work-card:hover::after {
        transform: scale(1.05);
      }
    }

    .work-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: flex-end;
      padding: 40px; 
      transition: background 0.3s ease;
    }

    @media (hover: hover) {
      .work-card:hover .work-overlay {
        background: rgba(0, 0, 0, 0.45);
      }
    }
    .work-card.active .work-overlay {
      background: rgba(0, 0, 0, 0.45);
    }

    .work-info {
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    @media (hover: hover) {
      .work-card:hover .work-info {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .work-card.active .work-info {
      opacity: 1;
      transform: translateY(0);
    }

    .work-info h3 {
      font-family: 'Phosphat Solid', sans-serif;
      font-size: 26px; 
      margin: 0 0 12px 0;
    }

    .work-info p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
      opacity: 0.85;
      max-width: 480px;
    }

    .work-link {
      display: inline-block;
      color: var(--white);
      text-decoration: none;
      font-size: 13px;
      text-transform: uppercase;
      font-weight: bold;
      border-bottom: 2px solid rgba(255, 255, 255, 0.2);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .work-link:hover {
      color: #47e0ff95;
      border-bottom-color: #47e0ff95;
    }

    @media (hover: none) {
      .work-info {
        opacity: 1;
        transform: translateY(0);
      }
      .work-overlay {
        background: rgba(0, 0, 0, 0.55);
      }
    }

    @media (max-width: 900px) {
      .arbeiten-container {
        padding: 30px 20px;
      }

      .arbeiten-grid {
        grid-template-columns: 1fr;
      }

      .work-card {
        height: 280px; 
      }
    }


    .leistungen-content {
      padding: 80px 40px;
      max-width: 1200px;
      margin: -60px auto 0 auto; 

    }

    .services-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
      align-content: center;   
      justify-content: center; 
      box-sizing: border-box; 
    }

    .service-item {
      padding: 40px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px); 
      transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .service-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #47e0ff95 10%, rgba(255, 71, 87, 0) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-item:hover {
      border-color: rgba(255, 255, 255, 0.15);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); 
    }

    .service-item:hover::before {
      opacity: 1;
    }

    .service-item h3 {
      font-family: 'Phosphat Solid', sans-serif; 
      font-size: 20px;
      margin: 0 0 16px 0;
      letter-spacing: .05em;
      color: var(--white);
      position: relative;
      z-index: 1;
    }

    .service-item p {
      font-size: 15px;
      line-height: 1.6;
      opacity: .75; 
      margin: 0;
      position: relative;
      z-index: 1;
      color: var(--white);
    }

    @media (max-width: 768px) {
      .leistungen-content {
        padding: 30px 20px;
        margin: 0px auto 0 auto; 
      }
      .services-list {
        min-height: auto;
      }
      .service-item {
        padding: 30px;
      }
    }

    
    @media (max-width: 768px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; align-items: center; justify-content: center; }
      .mobile-menu { display: flex; }
    }

    section.page {
      scroll-margin-top: 0;
    }

    .about-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 64px;
      max-width: 1200px;
      box-sizing: border-box;
      padding: 0px 40px;
      margin: -70px auto 0 auto; 
    }


    .about-text {
      flex: 1;
    }


    .about-text .subtitle {
      color: #47e0ff95; 
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 12px;
    }

    .about-text h2 {
      font-size: 2.4rem;
      margin-top: 0;
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      opacity: 0.85; 
      margin-bottom: 20px;
    }


    .btn-primary {
      display: inline-block;
      padding: 12px 28px;
      background: var(--white);
      color: var(--dark);
      text-decoration: none;
      font-weight: bold;
      border-radius: 4px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }


    .about-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-placeholder {
      width: 100%;
      max-width: 400px;
      height: 350px;
      background: rgba(0, 0, 0, 0.185); 
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden; 
      padding: 0px; 
      box-sizing: border-box;
    }


    .team-image {
      width: 100%;
      height: 100%;
      object-fit: contain; 
      object-position: center; 
      filter: drop-shadow(0px 5px 10px rgba(255, 255, 255, 0.233));
      opacity: 0;
      transform: translateY(40px) scale(0.92);
      -webkit-transform: translateY(40px) scale(0.92);
      will-change: opacity, transform;
      transition: none;
    }
    .team-image.logo-appeared {
      opacity: 1;
      transform: translateY(0) scale(1);
      transition: opacity 1s cubic-bezier(.22,1,.36,1),
                  transform 1s cubic-bezier(.22,1,.36,1);
    }

    @media (max-width: 768px) {
      .image-placeholder {
        height: 300px; 
      }
    }

    @media (max-width: 768px) {
      .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
        text-align: center; 
        min-height: auto;
        margin: 0px auto 0 auto; 
      }

      .about-text h2 {
        font-size: 2rem;
      }

      .image-placeholder {
        height: 300px;
      }
    }

    .contact-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 64px;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 60px 40px;
      box-sizing: border-box;
      align-self: center;
      margin: -60px auto 0 auto; 
    }

    .contact-text {
      flex: 1;
    }

    .contact-text .subtitle {
      color: #47e0ff95; 
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 12px;
    }

    .contact-text h2 {
      font-size: 2.4rem;
      margin-top: 0;
      margin-bottom: 24px;
    }

    .contact-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      opacity: 0.85; 
      margin-bottom: 20px;
    }

    .contact-form {
      flex: 1;
      background: rgba(0, 0, 0, 0.493);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 40px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      box-sizing: border-box;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 0.9rem;
      opacity: 0.8;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      color: var(--white);
      font-family: sans-serif;  
      font-size: 1rem;
      transition: border-color 0.2s, background 0.2s;
      box-sizing: border-box;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #47e0ff95; 
      box-shadow: 0 0 3px rgba(71, 224, 255, 0.5);
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px;
      background: var(--white);
      color: var(--dark);
      font-family: 'Phosphat Solid', sans-serif;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 0.2s, opacity 0.2s;
      margin-top: 10px;
      position: relative;
      overflow: hidden;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .btn-submit-text {
      display: block;
      text-align: center;
      font-weight: bold;
      flex: 1;
    }

    .input-wrapper {
      position: relative;
    }

    .input-wrapper input,
    .input-wrapper textarea {
      padding-right: 42px;
    }

    .input-wrapper.valid input,
    .input-wrapper.valid textarea {
      border-color: rgba(34, 197, 94, 0.5);
    }

    .input-wrapper.invalid input,
    .input-wrapper.invalid textarea {
      border-color: rgba(239, 68, 68, 0.5);
    }

    .field-icon {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .input-wrapper textarea ~ .field-icon {
      top: 14px;
      transform: none;
    }

    .field-icon.check { stroke: #22c55e; }
    .field-icon.cross { stroke: #ef4444; }

    .input-wrapper.valid   .field-icon.check { opacity: 1; }
    .input-wrapper.invalid .field-icon.cross { opacity: 1; }

    .field-hint {
      font-size: 0.75rem;
      opacity: 0;
      color: #ef4444;
      margin-top: 4px;
      transition: opacity 0.2s ease;
      min-height: 1em;
    }

    .input-wrapper.invalid + .field-hint {
      opacity: 1;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        min-height: auto;
        margin: -30px auto 0 auto; 
      }
      
      .contact-form {
        width: 100%;
        padding: 24px;
      }
    }

    .site-footer {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px); 
      
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      
      color: var(--white);
      padding: 60px 0 20px 0;
      width: 100%;
      font-family: sans-serif;
      margin-top: 40px; 
    }


    .footer-container {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 40px;
      box-sizing: border-box;
    }

    .footer-brand {
      flex: 2;
      max-width: 400px;
    }

    .footer-logo-container {
      margin-bottom: 16px;
      display: flex;
      align-items: center;
    }

    .footer-logo-img {
      height: 65px;
      width: auto;  
      object-fit: contain;
      filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3)); 
    }

    @media (max-width: 768px) {
      .footer-logo-container {
        justify-content: center; 
      }
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.6;
      opacity: 0.6;
      margin: 0;
    }


    .footer-nav, .footer-contact {
      flex: 1;
    }

    .footer-nav h4, .footer-contact h4 {
      font-family: 'Phosphat Solid', sans-serif;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0 0 20px 0;
      color: #47e0ff95;
    }

    .footer-nav ul, .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-nav a, .footer-contact a {
      color: var(--white);
      text-decoration: none;
      font-size: 14px;
      opacity: 0.7;
      transition: opacity 0.2s ease, color 0.2s ease;
    }

    .footer-nav a:hover, .footer-contact a:hover {
      opacity: 1;
      color: #47e0ff95;
    }

    .footer-mail {
      word-break: break-all;
      font-weight: 500;
    }


    .footer-bottom {
      max-width: 1600px;
      margin: 40px auto 0 auto;
      padding: 20px 40px 0 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
    }

    .footer-bottom p {
      font-size: 12px;
      opacity: 0.4;
      margin: 0;
    }


    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 32px;
        padding: 0 20px;
      }

      .footer-brand, .footer-nav, .footer-contact {
        max-width: 100%;
        text-align: center;
      }

      .footer-bottom {
        padding: 20px 20px 0 20px;
      }
    }

  .reveal-heading {
    opacity: 0;
    transform: translateY(-60px);
    filter: blur(6px);
    transition:
    opacity 1.3s cubic-bezier(.22,1,.36,1),
    transform 1.3s cubic-bezier(.22,1,.36,1),
    filter 1.3s cubic-bezier(.22,1,.36,1);
  }

  .reveal-heading.from-left  { transform: translateY(-60px); }
  .reveal-heading.from-right { transform: translateY(-60px); }
  .reveal-heading.from-top   { transform: translateY(-60px); }
  .reveal-heading.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  .reveal-card {
    opacity: 0;
    filter: blur(4px);
    transition:
      opacity 1.2s cubic-bezier(.22,1,.36,1),
      transform 1.2s cubic-bezier(.22,1,.36,1),
      filter 1.2s cubic-bezier(.22,1,.36,1);
  }
  .reveal-card.from-left  { transform: translateX(-80px); }
  .reveal-card.from-right { transform: translateX(80px); }
  .reveal-card.revealed {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }

  .reveal-para {
    opacity: 0;
    filter: blur(4px);
    transition:
      opacity 1.2s cubic-bezier(.22,1,.36,1),
      transform 1.2s cubic-bezier(.22,1,.36,1),
      filter 1.2s cubic-bezier(.22,1,.36,1);
  }
  .reveal-para.from-left  { transform: translateX(-60px); }
  .reveal-para.from-right { transform: translateX(60px); }
  .reveal-para.revealed {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }

  .reveal-btn {
    opacity: 0;
    transition:
      opacity 1.2s cubic-bezier(.22,1,.36,1) .1s,
      transform 1.2s cubic-bezier(.22,1,.36,1) .1s;
    position: relative;
    overflow: visible;
  }
  .reveal-btn.from-left  { transform: translateX(-50px); }
  .reveal-btn.from-right { transform: translateX(50px); }
  .reveal-btn.revealed {
    opacity: 1;
    transform: translateX(0);
  }

  @keyframes btn-border-glow {
    0%   { box-shadow: 0 0 0px 0px rgba(71, 224, 255, 0); }
    30%  { box-shadow: 0 0 16px 5px rgba(71, 224, 255, 0.6); }
    60%  { box-shadow: 0 0 28px 8px rgba(71, 224, 255, 0.35); }
    80%  { box-shadow: 0 0 12px 3px rgba(71, 224, 255, 0.2); }
    100% { box-shadow: 0 0 4px 1px rgba(71, 224, 255, 0.0); }
  }
  .reveal-btn.btn-glow {
    animation: btn-border-glow 2s cubic-bezier(.22,1,.36,1) forwards;
  }

    .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }