/* ============================================
     CSS VARIABLES — VEH BRAND MANUAL COLORS
     ============================================ */
  :root {
    --veh-blue: #20325c;
    --veh-blue-light: #2a4278;
    --veh-blue-dark: #182545;
    --veh-turquoise: #44b6a0;
    --veh-turquoise-light: #5cc8b3;
    --veh-black: #000000;
    --veh-white: #ffffff;
    --veh-grey-light: #f4f5f7;
    --veh-grey: #8a8e96;
    --veh-grey-dark: #4a4e56;
    --gradient-turquoise-blue: linear-gradient(135deg, #44b6a0 0%, #20325c 100%);
    --gradient-blue-dark: linear-gradient(180deg, #20325c 0%, #182545 100%);
    --font-headline: 'Titillium Web', sans-serif;
    --font-body: 'PT Sans', sans-serif;
    --nav-height: 80px;
    --section-padding: 100px;
  }

  /* ============================================
     RESET & BASE
     ============================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    font-family: var(--font-body);
    color: var(--veh-grey-dark);
    background: var(--veh-white);
    line-height: 1.7;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ============================================
     TYPOGRAPHY
     ============================================ */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    color: var(--veh-blue);
    line-height: 1.2;
    font-weight: 700;
  }

  h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
  h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
  p { font-size: 1.05rem; }

  .section-label {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--veh-turquoise);
    margin-bottom: 12px;
    display: block;
  }

  /* ============================================
     LAYOUT UTILITIES
     ============================================ */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ============================================
     NAVIGATION
     ============================================ */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
  }

  .nav.scrolled {
    background: rgba(32, 50, 92, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.15);
  }

  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo svg {
    height: 36px;
    width: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--font-headline);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--veh-turquoise);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--veh-white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    padding: 10px 24px;
    background: var(--veh-turquoise);
    color: var(--veh-white) !important;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav-cta:hover {
    background: var(--veh-turquoise-light);
    transform: translateY(-1px);
  }

  .nav-cta::after { display: none !important; }

  .lang-switch {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.3s;
  }

  .lang-switch:hover { color: var(--veh-white); }
  .lang-active { color: var(--veh-white); }

  /* Mobile menu button */
  .nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .nav-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
  }

  /* ============================================
     HERO SECTION
     ============================================ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-blue-dark);
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  /* Dark overlay so text stays readable over hero image */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(24, 37, 69, 0.75);
    z-index: 1;
  }
  /* Decorative wave motif inspired by the VEH Bildmarke */
  .hero-bg-pattern {
    position: absolute;
    top: 0;
    right: -10%;
    width: 70%;
    height: 100%;
    opacity: 0.06;
    pointer-events: none;
  }

  .hero-bg-pattern svg {
    width: 100%;
    height: 100%;
  }

  /* Gradient overlay at bottom */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(24, 37, 69, 1), transparent);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 120px;
  }

  .hero-claim {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--veh-turquoise);
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(68, 182, 160, 0.3);
    border-radius: 2px;
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
  }

  .hero h1 {
    color: var(--veh-white);
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s 0.15s ease forwards;
    opacity: 0;
  }

  .hero h1 span {
    background: var(--gradient-turquoise-blue);
    background: linear-gradient(135deg, var(--veh-turquoise) 0%, #7ecfc0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s 0.3s ease forwards;
    opacity: 0;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.45s ease forwards;
    opacity: 0;
  }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-headline);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeSlideUp 0.8s 0.7s ease forwards;
    opacity: 0;
  }

  .hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--veh-turquoise), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* ============================================
     BUTTONS
     ============================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-headline);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .btn-primary {
    background: var(--veh-turquoise);
    color: var(--veh-white);
  }

  .btn-primary:hover {
    background: var(--veh-turquoise-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(68, 182, 160, 0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--veh-white);
    border: 1.5px solid rgba(255,255,255,0.3);
  }

  .btn-outline:hover {
    border-color: var(--veh-white);
    background: rgba(255,255,255,0.05);
  }

  .btn-dark {
    background: var(--veh-blue);
    color: var(--veh-white);
  }

  .btn-dark:hover {
    background: var(--veh-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(32, 50, 92, 0.35);
  }

  .btn-arrow {
    transition: transform 0.3s;
  }

  .btn:hover .btn-arrow {
    transform: translateX(4px);
  }

  /* ============================================
     STATS BAR
     ============================================ */
  .stats-bar {
    background: var(--veh-blue);
    position: relative;
    z-index: 5;
  }

  .stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat-item {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }

  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--veh-turquoise);
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  /* ============================================
     ABOUT / ÜBER UNS SECTION
     ============================================ */
  .about {
    padding: var(--section-padding) 0;
    background: var(--veh-white);
    position: relative;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--veh-grey-light);
  }

  .about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--veh-grey-light) 0%, #e8eaee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--veh-grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* Decorative turquoise accent bar */
  .about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-turquoise-blue);
    z-index: 2;
  }

  .about-content h2 {
    margin-bottom: 20px;
  }

  .about-content p {
    margin-bottom: 16px;
    color: var(--veh-grey-dark);
  }

  .about-content .btn {
    margin-top: 24px;
  }

  /* ============================================
     SERVICES / LEISTUNGEN
     ============================================ */
  .services {
    padding: var(--section-padding) 0;
    background: var(--veh-grey-light);
    position: relative;
  }

  .services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
  }

  .services-header p {
    color: var(--veh-grey-dark);
    margin-top: 16px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--veh-white);
    border-radius: 8px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(32, 50, 92, 0.06);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-turquoise-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(32, 50, 92, 0.1);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(32, 50, 92, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.4s;
  }

  .service-card:hover .service-icon {
    background: var(--veh-blue);
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--veh-blue);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.4s;
  }

  .service-card:hover .service-icon svg {
    stroke: var(--veh-turquoise);
  }

  .service-card h3 {
    margin-bottom: 12px;
  }

  .service-card p {
    color: var(--veh-grey-dark);
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ============================================
     CTA BANNER
     ============================================ */
  .cta-banner {
    padding: 80px 0;
    background: var(--veh-blue);
    position: relative;
    overflow: hidden;
  }

  .cta-banner-bg {
    position: absolute;
    right: -5%;
    top: -50%;
    width: 50%;
    height: 200%;
    opacity: 0.04;
    pointer-events: none;
  }

  .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
  }

  .cta-inner h2 {
    color: var(--veh-white);
    max-width: 500px;
  }

  .cta-inner h2 span {
    color: var(--veh-turquoise);
  }

  /* ============================================
     CAREER TEASER
     ============================================ */
  .career {
    padding: var(--section-padding) 0;
    background: var(--veh-white);
  }

  .career-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }

  .career-content .section-label { color: var(--veh-turquoise); }

  .career-content h2 { margin-bottom: 20px; }

  .career-content p {
    color: var(--veh-grey-dark);
    margin-bottom: 16px;
  }

  .career-content .btn { margin-top: 24px; }

  .job-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--veh-grey-light);
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
  }

  .job-item:hover {
    border-color: var(--veh-turquoise);
    background: var(--veh-white);
    box-shadow: 0 4px 20px rgba(32, 50, 92, 0.06);
  }

  .job-title {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 1rem;
    color: var(--veh-blue);
  }

  .job-meta {
    font-size: 0.85rem;
    color: var(--veh-grey);
    margin-top: 2px;
  }

  .job-arrow {
    color: var(--veh-turquoise);
    font-size: 1.2rem;
    transition: transform 0.3s;
  }

  .job-item:hover .job-arrow {
    transform: translateX(4px);
  }

  /* ============================================
     CONTACT SECTION
     ============================================ */
  .contact {
    padding: var(--section-padding) 0;
    background: var(--veh-grey-light);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-info h2 {
    margin-bottom: 20px;
  }

  .contact-info p {
    color: var(--veh-grey-dark);
    margin-bottom: 32px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: rgba(32, 50, 92, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--veh-blue);
    fill: none;
    stroke-width: 1.5;
  }

  .contact-detail-label {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--veh-grey);
    margin-bottom: 2px;
  }

  .contact-detail-value {
    font-size: 1rem;
    color: var(--veh-blue);
    font-weight: 700;
    font-family: var(--font-headline);
  }

  .contact-form {
    background: var(--veh-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(32, 50, 92, 0.06);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group { margin-bottom: 16px; }

  .form-group label {
    display: block;
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--veh-grey-dark);
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1.5px solid rgba(32, 50, 92, 0.12);
    border-radius: 4px;
    background: var(--veh-grey-light);
    color: var(--veh-grey-dark);
    transition: all 0.3s;
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--veh-turquoise);
    background: var(--veh-white);
    box-shadow: 0 0 0 3px rgba(68, 182, 160, 0.12);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--veh-grey);
    line-height: 1.5;
  }

  .form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--veh-turquoise);
  }

  .form-consent a {
    color: var(--veh-turquoise);
    text-decoration: underline;
  }

  /* ============================================
     MAP PLACEHOLDER
     ============================================ */
  .map-section {
    height: 400px;
    background: var(--veh-grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--veh-turquoise);
  }

  .map-placeholder {
    font-family: var(--font-headline);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--veh-grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
  }

  .map-placeholder small {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--veh-grey);
  }

  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background: var(--veh-blue-dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
  }

  .footer-logo svg {
    height: 30px;
    width: auto;
  }

  .footer-col h4 {
    color: var(--veh-white);
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
  }

  .footer-col ul a:hover { color: var(--veh-turquoise); }

  .footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
  }

  .footer-legal a:hover { color: var(--veh-turquoise); }

  /* ============================================
     COOKIE BANNER (GDPR)
     ============================================ */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24, 37, 69, 0.97);
    backdrop-filter: blur(12px);
    padding: 24px 32px;
    z-index: 9999;
    transform: translateY(100%);
    animation: slideUp 0.5s 1.5s forwards;
    border-top: 2px solid var(--veh-turquoise);
  }

  .cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .cookie-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cookie-text a {
    color: var(--veh-turquoise);
    text-decoration: underline;
  }

  .cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }

  .cookie-btn {
    padding: 10px 20px;
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .cookie-accept {
    background: var(--veh-turquoise);
    color: white;
  }

  .cookie-accept:hover { background: var(--veh-turquoise-light); }

  .cookie-settings {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
  }

  .cookie-settings:hover {
    border-color: rgba(255,255,255,0.4);
    color: white;
  }

  .cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.4);
    border: none;
  }

  .cookie-decline:hover { color: rgba(255,255,255,0.7); }

  /* ============================================
     ANIMATIONS
     ============================================ */
  @keyframes fadeSlideUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  @media (max-width: 768px) {
    :root { --section-padding: 64px; }

    .nav-links { display: none; }
    .nav-menu-btn { display: block; }

    .hero-content { padding-top: 100px; }

    .stats-bar-inner {
      grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) { border-right: none; }

    .about-grid,
    .career-grid,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

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

    .cta-inner {
      flex-direction: column;
      text-align: center;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .cookie-inner {
      flex-direction: column;
      text-align: center;
    }

    .cookie-actions {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .stats-bar-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
  }
