@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   KundenKern - Seriöses Corporate Design
   Style: Clean, Centered, Corporate, Professional
   Colors: Black, Royal Blue, Slate
   ========================================================================== */

:root {
    /* Primary Brand Colors */
    --brand-primary: #1e40af;   /* Deep Professional Blue */
    --brand-secondary: #2563EB;
    --brand-accent: #1e3a5f;    /* Dark Navy Accent */
    --brand-red: #1e40af;       /* Mapped to primary for consistency */
    --brand-red-light: rgba(30, 64, 175, 0.06);
    --brand-dark: #0f172a;      /* Deep Navy-Black */
    --brand-light: #f0f4f8;
    
    /* Semantic Colors */
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748B;
    
    --border-light: #e2e8f0;
    --bg-surface: #ffffff;
    --bg-page: #f8fafc;
    
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    
    --shadow-soft: 0 4px 24px -4px rgba(15, 23, 42, 0.07);
    --shadow-hover: 0 8px 32px -8px rgba(30, 64, 175, 0.12);
    
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1100px;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    background: transparent; /* Must be transparent to see the fixed canvas */
}

/* Global Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: var(--bg-page);
    pointer-events: none;
}

/* ==========================================================================
   Loader
   ========================================================================== */
.loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite ease-in-out;
}

.loader-progress {
    width: 150px;
    height: 3px;
    background: var(--border-light);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: var(--brand-primary);
    border-radius: 3px;
    animation: slide 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.95); }
}

@keyframes slide {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ==========================================================================
   Typography - Animierte bunte Farbverläufe
   ========================================================================== */
h1, h2, h3, h4, .hero-title, .section-title {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    /* Animated Gradient Effect - BUNT */
    background: linear-gradient(270deg, #1e40af, #7c3aed, #0891b2, #e11d48, #1e40af);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientShift 8s ease infinite;
}

@keyframes textGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Specific Highlight Spans */
h1 span, .section-title span {
    background: linear-gradient(90deg, #e11d48, #f59e0b, #7c3aed, #0891b2, #e11d48);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientShift 5s linear infinite;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    padding: 0.9rem 0;
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
}

.logo img {
    height: 32px;
    filter: brightness(0);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-primary);
}

/* Buttons - Seriöser: weniger rund, professioneller */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    border: none;
}

.btn-primary {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.btn-primary:hover {
    background: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--brand-dark);
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.08);
}

.btn-sm {
    padding: 0.6rem 1.3rem;
    font-size: 0.88rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Hero Section - ZENTRIERT
   ========================================================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 6rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(30, 64, 175, 0.06);
    color: var(--brand-primary);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   Sections - ALLES ZENTRIERT
   ========================================================================== */
.section {
    padding: 5rem 0;
}

.trust-section {
    padding: 3rem 0 5rem 0;
}

.trust-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    padding: 3rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.trust-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    display: inline-block;
    line-height: 1;
}

.trust-percent, .trust-plus, .trust-slash {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    vertical-align: top;
}

.trust-label {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==========================================================================
   Global Sections & Grid - ZENTRIERT
   ========================================================================== */
.services-section, .why-section, .process-section, .contact-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    text-align: center;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards - ZENTRIERT */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 64, 175, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--brand-primary);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Warum KundenKern / Vision - ZENTRIERT
   ========================================================================== */
.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text {
    text-align: center;
}

.why-text .section-title {
    text-align: center;
}

.why-text .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-check {
    min-width: 28px;
    height: 28px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-size: 0.85rem;
}

.feature-icon-check svg {
    width: 14px;
    height: 14px;
}

.feature-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--text-heading);
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.why-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--brand-primary), #60A5FA);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 10s ease-in-out infinite;
    opacity: 0.08;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* ==========================================================================
   Process Section - ZENTRIERT
   ========================================================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(30, 64, 175, 0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Team & Karriere - ZENTRIERT
   ========================================================================== */
.team-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.team-image-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/5;
    background: var(--brand-light);
}

.team-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-role {
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.team-name {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}

.team-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ==========================================================================
   Industries, Pilot, KPI - ZENTRIERT
   ========================================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: rgba(30, 64, 175, 0.25);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.industry-card h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-heading);
}

.pilot-box {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--brand-dark);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.pilot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .pilot-grid { grid-template-columns: 1fr; }
}

.pilot-step {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--brand-primary);
    color: var(--brand-dark);
    text-align: left;
}

.pilot-step h4 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.kpi-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.kpi-label {
    font-weight: 700;
    color: var(--brand-dark);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   Contact CTA & Form - ZENTRIERT
   ========================================================================== */
.cta-banner {
    background: var(--brand-dark);
    padding: 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.cta-banner h2,
.cta-banner .section-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    position: relative;
    z-index: 2;
}

.cta-banner p,
.cta-banner .section-desc {
    color: rgba(255,255,255,0.7) !important;
    position: relative;
    z-index: 2;
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
}


.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.25) 0%, transparent 70%);
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.form-box {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-heading);
    font-size: 0.92rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.08);
}

/* ==========================================================================
   Legal Content - ZENTRIERT
   ========================================================================== */
.legal-content {
    text-align: left;
    max-width: 750px;
    margin: 0 auto;
}

.legal-content h2, .legal-content h3 {
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Grid helper */
.grid {
    display: grid;
}

/* ==========================================================================
   Footer - Premium Corporate
   ========================================================================== */
.footer {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.6);
    padding: 5rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
    text-align: center;
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo {
    justify-content: center;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    max-width: 320px;
    margin: 1.25rem auto 0 auto;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-brand strong {
    color: rgba(255,255,255,0.85);
}

.footer-contact {
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
}

.footer-contact p {
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #60a5fa;
}

.footer-links {
    text-align: center;
}

.footer-links h4 {
    font-size: 0.78rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: rgba(255,255,255,0.9);
    color: rgba(255,255,255,0.9);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.75rem;
    transition: color 0.3s, transform 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
.reveal, .reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.is-visible, .reveal-up.is-visible, .reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
}

@media (max-width: 1024px) {
    .trust-wrapper { flex-direction: column; }
    .why-container { grid-template-columns: 1fr; text-align: center; }
    .why-visual { display: none; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-container { grid-template-columns: 1fr; text-align: center; }
    .grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .kpi-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: 1fr 1fr; }
}
