/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --accent: #2563EB;
    --accent-light: #3B82F6;
    --accent-dark: #1D4ED8;
    --accent-glow: rgba(37, 99, 235, 0.25);

    --border-color: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px var(--accent-glow);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 60px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 24px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO STYLES */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    /* Initial White */
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.brand-sub {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.navbar.scrolled .brand-text {
    color: var(--text-primary);
    /* Dark when scrolled */
}

.navbar.scrolled .brand-sub {
    color: var(--text-secondary);
}

/* MENU STYLES */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    /* White text initially */
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

/* Links - Scrolled State (Dark on White Nav) */
.navbar.scrolled .nav-link {
    color: var(--text-primary);
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent);
}

.navbar.scrolled .nav-link::after {
    background: var(--accent);
}

/* CTA Button */
.nav-cta {
    padding: 12px 28px;
    background: white;
    color: var(--accent);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: white;
    color: #1e40af;
}

/* CTA Button Scrolled */
.navbar.scrolled .nav-cta {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--accent-dark);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    /* White hamburger initially */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
    /* Dark hamburger scrolled */
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Premium Blue Gradient - Trustworthy & Professional */
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px);
    opacity: 1;
}

/* HERO GLOW EFFECT */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
    opacity: 0;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Gradient text accent within Hero */
.hero-title .accent {
    background: linear-gradient(to right, #60a5fa, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.title-small {
    display: block;
    font-size: 0.4em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

/* UPGRADED BUTTONS SPECIFIC TO HERO */
.hero-cta .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 100px;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hero-cta .btn-primary {
    background: white;
    color: #0f172a;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== VORTEILE SECTION ===== */
.vorteile {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.vorteile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.vorteil-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.vorteil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.vorteil-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.vorteil-card:hover::before {
    opacity: 1;
}

.vorteil-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    margin-bottom: 24px;
}



.vorteil-icon svg {
    stroke: var(--accent);
}

.vorteil-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.vorteil-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.vorteil-line {
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 24px auto 0;
    border-radius: 2px;
}

/* ===== PREMIUM LEISTUNGEN DESIGN ===== */
.leistungen {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.leistung-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft base shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.leistung-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.2);
    /* Blue glow */
    border-color: rgba(37, 99, 235, 0.5);
    z-index: 10;
}

/* Image Container with slant styling */
.leistung-image {
    width: 100%;
    height: 240px;
    /* Taller image */
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    /* Slanted bottom */
}

.leistung-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.leistung-card:hover .leistung-image img {
    transform: scale(1.1);
}

.leistung-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(37, 99, 235, 0.2) 100%);
    /* Blue tint on bottom */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leistung-card:hover .leistung-image::after {
    opacity: 1;
}

/* Featured Badge Update */
.leistung-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    z-index: 2;
}

/* Content Styling */
.leistung-content {
    padding: 10px 32px 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.leistung-number {
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(37, 99, 235, 0.15);
    /* Outline text effect */
    position: absolute;
    top: 180px;
    right: 20px;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.leistung-card:hover .leistung-number {
    color: rgba(37, 99, 235, 0.05);
    transform: translateY(-10px);
}

.leistung-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--text-primary), var(--text-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--text-primary);
    transition: background 0.3s ease;
}

.leistung-card:hover .leistung-title {
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leistung-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Tech List Styling */
.leistung-list {
    margin-top: auto;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    /* Tech dashed line */
    padding-top: 20px;
}

.leistung-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.leistung-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    /* Glowing dots */
    border-radius: 50%;
}

/* ===== BEWERTUNGEN SECTION ===== */
.bewertungen {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
}

.author-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.trust-badge span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.social-link.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-address {
    font-style: normal;
}

.footer-address p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-address a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-address a:hover {
    color: var(--accent);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.hours-list .day {
    color: var(--text-primary);
    font-weight: 500;
}

.hours-list .time {
    color: var(--text-secondary);
}

.footer-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* ===== BRAND SLIDER ===== */
.brand-slider {
    background: white;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 60s linear infinite;
    align-items: center;
    gap: 60px;
    /* More space between logos */
}

.brand-item {
    font-size: 1.8rem;
    font-weight: 900;
    color: #94a3b8;
    /* Base gray color */
    opacity: 0.7;
    padding: 0 10px;
    letter-spacing: -0.03em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
    transform-origin: center;
    filter: grayscale(100%);
    /* Start clean */
}

/* Hover Effects - Reveal Brand Colors */
.brand-slider:hover .brand-item {
    opacity: 0.3;
    /* Dim others */
    filter: grayscale(100%) blur(2px);
}

.brand-slider:hover .brand-item:hover {
    opacity: 1;
    filter: grayscale(0%) blur(0);
    transform: scale(1.1);
    cursor: default;
}

/* Image Logo Handling */
img.brand-item {
    height: auto;
    max-height: 45px;
    width: auto;
    padding: 0;
    display: block;
}

.brand-item.trw-logo {
    margin-top: 5px;
}

.brand-item.mann {
    color: #00964E;
    font-weight: 800;
}

.brand-item.fuchs {
    color: #E2001A;
    font-style: italic;
}

.brand-item.meyle {
    color: #00539B;
}

.brand-item.bosch {
    color: #EA0016;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.brand-item.ate {
    color: #003399;
    font-weight: 800;
}

.brand-item.brembo {
    color: #E31B23;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-item.continental {
    color: #FFA500;
    font-weight: 700;
    color: black;
}

/* Continental is visually black mostly with orange icon, stick to black for text or orange for pop? Let's use darker gray/black */
.brand-item.continental:hover {
    color: #FFA500;
    background: black;
    padding: 0 10px;
}

/* Special invert for Conti */
.brand-item.skf {
    color: #005092;
    font-weight: 900;
}

.brand-item.zf {
    color: #004F9F;
    letter-spacing: 0.05em;
}


.slider-gradient-left,
.slider-gradient-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.slider-gradient-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider-gradient-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
        /* Adjusted for 3 sets */
    }
}

/* ===== OFFER SECTION ===== */
.offer-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.offer-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
    color: white;
}

/* Background Pattern for Offer */
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-content {
    flex: 1;
    z-index: 1;
    padding-top: 20px;
    /* Space for badge */
}

.offer-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.offer-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 600px;
}

.offer-meta {
    display: flex;
    gap: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.offer-limit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
}

.offer-action {
    z-index: 1;
    flex-shrink: 0;
}

.btn-white {
    background: white;
    color: var(--accent);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

.pulse-animation {
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right var(--transition-normal);
        border-left: 1px solid var(--border-color);
    }

    .nav-menu.active {
        right: 0;
    }

    .offer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        text-align: left;
    }

    .offer-action {
        width: 100%;
    }

    .btn-white {
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .vorteile,
    .leistungen,
    .bewertungen {
        padding: 80px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .trust-badges {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .vorteile-grid,
    .leistungen-grid,
    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .vorteil-card,
    .leistung-card,
    .testimonial-card {
        padding: 30px;
    }
}


/* ===== STICKY ACTIONS ===== */
.sticky-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 50px;
    background: var(--bg-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    text-decoration: none;
    overflow: hidden;
}

.action-btn.whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.action-btn.phone {
    background: var(--bg-card);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    justify-content: center;
}

.action-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.action-btn.whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.action-icon svg {
    width: 24px;
    height: 24px;
}

.action-text {
    font-weight: 600;
    font-size: 1rem;
    padding-right: 8px;
}

/* Pulse Animation for WhatsApp */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.action-btn.whatsapp {
    animation: pulse-green 2s infinite;
}

@media (max-width: 768px) {
    .sticky-actions {
        bottom: 20px;
        right: 20px;
        flex-direction: row-reverse;
        /* Phone on right, larger whatsapp on left */
        align-items: flex-end;
    }

    .action-text {
        display: none;
        /* Icon only on mobile to save space */
    }

    .action-btn {
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }
}

/* ===== ADVENTSKALENDER SECTION ===== */
.advent-section {
    padding: 80px 0;
    background: #0f172a;
    /* Dark Blue/Black */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advent-section .section-title {
    color: white;
}

.advent-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.advent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    /* Adaptive grid */
    gap: 16px;
    margin-top: 40px;
}

/* Door Card */
.advent-door {
    aspect-ratio: 1/1;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advent-door:hover {
    transform: translateY(-5px);
    background: #334155;
}

/* Door Number */
.door-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    transition: color 0.3s;
}

.advent-door:hover .door-number {
    color: rgba(255, 255, 255, 0.8);
}

/* States */
.advent-door.locked {
    cursor: not-allowed;
    opacity: 0.6;
}

.advent-door.locked::after {
    content: '🔒';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1rem;
    opacity: 0.5;
}

.advent-door.today {
    border: 2px solid #eab308;
    background: linear-gradient(135deg, #1e293b, #334155);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
    animation: goldPulse 2s infinite;
}

.advent-door.today .door-number {
    color: #eab308;
}

.advent-door.past {
    background: #0f172a;
    border-color: #334155;
    opacity: 0.8;
}

.advent-door.past::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    color: #22c55e;
    font-weight: 900;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(234, 179, 8, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0);
    }
}

/* Modal Styles */
.advent-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.advent-modal.active {
    display: flex;
}

.advent-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-date-badge {
    background: #eab308;
    color: black;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 0.9rem;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #0f172a;
}

.modal-visual {
    font-size: 5rem;
    margin: 20px 0;
}

.modal-desc {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.modal-price {
    font-size: 3rem;
    font-weight: 900;
    color: #eab308;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* HERO FEATURES - 100% PROFI LOOK */
.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    /* Very subtle fill */
    padding: 12px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Clean thin border */
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    /* PROFI LOOK */
    letter-spacing: 0.1em;
    font-family: var(--font-primary);
}

.feature-item {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
}


/* Old Modal Styles Removed - Booking is now on termin.html */

/* Booking Tabs (Reused but adapted) */
.booking-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    gap: 6px;
    border-radius: var(--radius-md);
    margin: 20px 30px;
}

.booking-tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-tab.active {
    background: white;
    color: var(--accent);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.booking-body {
    padding: 0 30px 30px;
}

/* Ensure generated dates look good */
.date-selector {
    justify-content: flex-start;
    /* Left align for scroll */
    padding-bottom: 10px;
}

/* Reusing Form Styles from before */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.form-input,
.form-select {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background: #f8fafc;
    width: 100%;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Services Small Grid */
.service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.service-option {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.service-option:hover {
    border-color: var(--accent-light);
    background: #f0f9ff;
}

.service-option.selected {
    border-color: var(--accent);
    background: rgba(37, 99, 235, 0.05);
    color: var(--accent);
    font-weight: 700;
}

/* Date Card Small */
.date-card {
    min-width: 70px;
    padding: 10px 5px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    background: white;
}

.date-card.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.date-day {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.date-num {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}