:root {
    --primary-orange: #E8750B;
    --primary-orange-light: #FF8C2A;
    --bg-dark: #0D0D0D;
    --bg-card: rgba(26, 26, 26, 0.8);
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-gray-light: #D0D0D0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #0D0D0D;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(232, 117, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(232, 117, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(232, 117, 11, 0.08) 0%, transparent 50%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(232, 117, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 117, 11, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatGlow 20s ease-in-out infinite;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 117, 11, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 117, 11, 0.25) 0%, transparent 70%);
    bottom: 20%;
    right: -150px;
    animation-delay: -7s;
}

.bg-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 42, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(-50px, -20px) scale(1.05); }
}

.bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

#electricCanvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 117, 11, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 5%;
    background: rgba(13, 13, 13, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(232, 117, 11, 0.5));
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(232, 117, 11, 0.8));
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-orange);
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(232, 117, 11, 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    box-shadow: 0 0 10px var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(232, 117, 11, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 117, 11, 0.4), 0 0 30px rgba(232, 117, 11, 0.2);
}

.nav-cta:hover {
    background: var(--primary-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232, 117, 11, 0.6), 0 0 50px rgba(232, 117, 11, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--primary-orange);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 5% 80px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 117, 11, 0.1);
    border: 1px solid rgba(232, 117, 11, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--primary-orange); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--primary-orange), 0 0 40px var(--primary-orange); }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    text-shadow: 0 0 30px rgba(232, 117, 11, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat { text-align: center; }

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-orange);
    line-height: 1;
    text-shadow: 0 0 20px rgba(232, 117, 11, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(232, 117, 11, 0.4), 0 0 40px rgba(232, 117, 11, 0.2);
}

.btn-primary:hover {
    background: var(--primary-orange-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 117, 11, 0.5), 0 0 60px rgba(232, 117, 11, 0.3);
}

.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(232, 117, 11, 0.3);
}

/* ==========================================
   SECTIONS
   ========================================== */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(232, 117, 11, 0.5);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* ==========================================
   SERVICES
   ========================================== */
.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.service-category {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(232, 117, 11, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.service-category:hover {
    border-color: rgba(232, 117, 11, 0.3);
    box-shadow: 0 0 40px rgba(232, 117, 11, 0.1);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 117, 11, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-orange);
    filter: drop-shadow(0 0 5px rgba(232, 117, 11, 0.5));
}

.service-category h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--text-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.8) 0%, rgba(13, 19, 24, 0.9) 100%);
    border: 1px solid rgba(232, 117, 11, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(232, 117, 11, 0.15) 0%, transparent 60%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 117, 11, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 117, 11, 0.2);
}

.service-card:hover .service-card-bg { opacity: 1; }

.service-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-orange);
    filter: drop-shadow(0 0 10px rgba(232, 117, 11, 0.5));
}

.service-card:hover .service-card-icon {
    top: 20%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
}

.service-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-orange);
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(232, 117, 11, 0.3);
    text-align: center;
}

.service-card:hover h4 {
    opacity: 0;
    transform: translateY(10px);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.9) 50%, rgba(232, 117, 11, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-overlay { opacity: 1; }

.service-card-overlay p {
    font-size: 0.85rem;
    color: var(--text-gray-light);
    line-height: 1.5;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.service-card:hover .service-card-overlay p { transform: translateY(0); }

/* ==========================================
   ABOUT
   ========================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image-wrapper {
    border-radius: 20px;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 117, 11, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(232, 117, 11, 0.1);
}

.about-logo {
    width: 60%;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(232, 117, 11, 0.3));
}

.about-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(232, 117, 11, 0.5);
}

.about-content p {
    color: var(--text-gray-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(232, 117, 11, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-orange);
    filter: drop-shadow(0 0 5px rgba(232, 117, 11, 0.5));
}

.about-feature span {
    font-weight: 500;
    color: var(--text-gray-light);
}

/* ==========================================
   ABO-KONFIGURATOR
   ========================================== */
#abo {
    overflow: visible;
}

.abo-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.abo-form {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(232, 117, 11, 0.1);
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
}

.abo-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.abo-step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: white;
}

.abo-step-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-white);
}

/* Services Grid */
.abo-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.abo-category h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(232, 117, 11, 0.2);
    overflow: visible;
}

.abo-category h4 svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex-shrink: 0;
}

.abo-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: visible;
}

/* Custom Checkbox */
.abo-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    overflow: visible;
}

.abo-checkbox:hover {
    background: rgba(232, 117, 11, 0.1);
    border-color: rgba(232, 117, 11, 0.2);
}

.abo-checkbox input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.abo-checkbox input:checked + .checkbox-custom {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.abo-checkbox input:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label {
    color: var(--text-gray-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.4;
    flex: 1;
    padding-top: 1px;
}

.abo-checkbox:hover .checkbox-label,
.abo-checkbox input:checked ~ .checkbox-label {
    color: var(--text-white);
}

.abo-hint {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

/* Sonstiges Option */
.abo-sonstiges {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(232, 117, 11, 0.05);
    border: 1px dashed rgba(232, 117, 11, 0.3);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.abo-sonstiges .abo-checkbox {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.abo-sonstiges .abo-checkbox:hover {
    background: transparent;
}

.abo-sonstiges-text {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(232, 117, 11, 0.2);
}

.abo-sonstiges-text label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray-light);
    margin-bottom: 0.5rem;
}

.abo-sonstiges-text textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s ease;
}

.abo-sonstiges-text textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(232, 117, 11, 0.1);
}

.abo-sonstiges-text textarea::placeholder {
    color: var(--text-gray);
}

/* Form Grid */
.abo-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.abo-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.abo-form-group.full-width {
    grid-column: 1 / -1;
}

.abo-form-group label {
    font-size: 0.9rem;
    color: var(--text-gray-light);
    font-weight: 500;
}

.abo-form-group input,
.abo-form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.abo-form-group input:focus,
.abo-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(232, 117, 11, 0.1);
}

.abo-form-group input::placeholder,
.abo-form-group textarea::placeholder {
    color: var(--text-gray);
}

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

/* Privacy Checkbox */
.abo-privacy {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    background: transparent;
    border: none;
    padding: 0;
}

.abo-privacy:hover {
    background: transparent;
}

.abo-privacy .checkbox-label a {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Buttons */
.abo-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.abo-next-btn {
    margin-left: auto;
}

/* Progress Indicator */
.abo-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(232, 117, 11, 0.1);
}

.abo-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
}

.progress-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.abo-progress-step.active .progress-number,
.abo-progress-step.completed .progress-number {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 0 20px rgba(232, 117, 11, 0.4);
}

.progress-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.abo-progress-step.active .progress-label {
    color: var(--primary-orange);
}

.abo-progress-step.completed .progress-label {
    color: var(--text-gray-light);
}

.abo-progress-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.abo-progress-line.active {
    background: var(--primary-orange);
}

/* Success State */
.abo-success {
    text-align: center;
    padding: 3rem 2rem;
}

.abo-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPulse 2s ease-in-out infinite;
}

.abo-success-icon svg {
    width: 40px;
    height: 40px;
    stroke: #4CAF50;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); }
}

.abo-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.abo-success p {
    color: var(--text-gray-light);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .abo-form {
        padding: 1.5rem;
    }
    
    .abo-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .abo-form-grid {
        grid-template-columns: 1fr;
    }
    
    .abo-buttons {
        flex-direction: column;
    }
    
    .abo-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .abo-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .abo-progress-line {
        width: 30px;
    }
    
    .abo-progress-step {
        padding: 0 0.75rem;
    }
    
    .progress-label {
        font-size: 0.7rem;
    }
    
    /* Fix for checkbox label overflow on mobile */
    .abo-checkbox {
        padding: 0.6rem 0.75rem;
        gap: 0.6rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .checkbox-custom {
        width: 20px;
        height: 20px;
        min-width: 20px;
        flex-shrink: 0;
    }
    
    /* Fix category header SVG overlap */
    .abo-category h4 {
        font-size: 1rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .abo-category h4 svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        flex-shrink: 0;
    }
    
    .abo-checkboxes {
        gap: 0.5rem;
    }
    
    .abo-sonstiges {
        padding: 1rem;
    }
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(232, 117, 11, 0.1);
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    width: 100%;
}

button.contact-method {
    outline: none;
}

.copy-feedback {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.copy-feedback.show {
    opacity: 1;
    visibility: visible;
}

.contact-method:hover {
    border-color: var(--primary-orange);
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(232, 117, 11, 0.2);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(232, 117, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-method-icon {
    background: var(--primary-orange);
    box-shadow: 0 0 20px rgba(232, 117, 11, 0.5);
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-orange);
    transition: stroke 0.3s ease;
}

.contact-method:hover .contact-method-icon svg { stroke: var(--text-white); }

.contact-method-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.contact-method-label { 
    font-size: 0.8rem; 
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method-value { 
    font-weight: 600;
    font-size: 1.05rem;
    word-break: break-word;
}

/* ==========================================
   REVEAL ANIMATIONS - Dynamic Section Transitions
   ========================================== */
.reveal-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays for items */
.reveal-item:nth-child(1) { transition-delay: 0.1s; }
.reveal-item:nth-child(2) { transition-delay: 0.2s; }
.reveal-item:nth-child(3) { transition-delay: 0.3s; }
.reveal-item:nth-child(4) { transition-delay: 0.4s; }
.reveal-item:nth-child(5) { transition-delay: 0.5s; }
.reveal-item:nth-child(6) { transition-delay: 0.6s; }

/* Special reveal effects */
.reveal-section.from-left {
    transform: translateX(-60px);
}

.reveal-section.from-left.active {
    transform: translateX(0);
}

.reveal-section.from-right {
    transform: translateX(60px);
}

.reveal-section.from-right.active {
    transform: translateX(0);
}

.reveal-section.scale-in {
    transform: scale(0.9);
}

.reveal-section.scale-in.active {
    transform: scale(1);
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 117, 11, 0.1);
    backdrop-filter: blur(20px);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--text-gray-light); }

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(232, 117, 11, 0.2);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--bg-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .btn { width: 100%; justify-content: center; }

.form-message { padding: 1rem; border-radius: 10px; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.form-message.success { background: rgba(76, 175, 80, 0.1); border: 1px solid rgba(76, 175, 80, 0.3); color: #81c784; }
.form-message.error { background: rgba(244, 67, 54, 0.1); border: 1px solid rgba(244, 67, 54, 0.3); color: #e57373; }
.spinner { width: 20px; height: 20px; border: 2px solid rgba(255, 255, 255, 0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: rgba(26, 26, 26, 0.9);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(232, 117, 11, 0.1);
    backdrop-filter: blur(20px);
}

.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.footer-logo .logo-img { width: 45px; height: 45px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(232, 117, 11, 0.5)); }
.footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--primary-orange); line-height: 1.1; }
.footer-brand p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 42px; height: 42px; background: rgba(232, 117, 11, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--primary-orange); box-shadow: 0 0 20px rgba(232, 117, 11, 0.5); }
.footer-social a svg { width: 20px; height: 20px; stroke: var(--primary-orange); transition: stroke 0.3s ease; }
.footer-social a:hover svg { stroke: var(--text-white); }

.footer-column h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; color: var(--text-gray); }
.footer-links a { color: var(--text-gray); text-decoration: none; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--primary-orange); text-shadow: 0 0 10px rgba(232, 117, 11, 0.5); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-bottom p { color: var(--text-gray); font-size: 0.9rem; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal button { background: none; border: none; color: var(--text-gray); cursor: pointer; font-family: inherit; transition: color 0.3s ease; }
.footer-legal button:hover { color: var(--primary-orange); }

/* ==========================================
   MODAL
   ========================================== */
.modal { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); z-index: 2000; align-items: center; justify-content: center; padding: 2rem; }
.modal.active { display: flex; }
.modal-content { background: var(--bg-card); border-radius: 20px; max-width: 600px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 2.5rem; position: relative; border: 1px solid rgba(232, 117, 11, 0.2); backdrop-filter: blur(20px); }

.modal-content-large {
    max-width: 900px;
    max-height: 85vh;
}

.modal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(232, 117, 11, 0.2);
}

.modal-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-content h4 {
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: var(--text-gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-content p strong {
    color: var(--text-white);
}

.modal-content ul {
    color: var(--text-gray-light);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.modal-content ul li {
    margin-bottom: 0.5rem;
}

.modal-content a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.modal-content a:hover {
    color: var(--primary-orange-light);
}

.modal-content address {
    font-style: normal;
    color: var(--text-gray-light);
    line-height: 1.7;
}
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(232, 117, 11, 0.1); border: none; width: 40px; height: 40px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.modal-close:hover { background: var(--primary-orange); }
.modal-close svg { width: 20px; height: 20px; stroke: var(--primary-orange); transition: stroke 0.3s ease; }
.modal-close:hover svg { stroke: var(--text-white); }
.modal-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin-bottom: 1.5rem; color: var(--primary-orange); }
.modal-content h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.modal-content p, .modal-content address { color: var(--text-gray-light); font-size: 0.95rem; line-height: 1.7; font-style: normal; }

/* Phone Modal Styles */
.phone-modal-content {
    text-align: center;
    max-width: 450px;
}

.phone-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(232, 117, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: phonePulse 2s ease-in-out infinite;
}

.phone-modal-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-orange);
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 117, 11, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(232, 117, 11, 0); }
}

.phone-modal-content h2 {
    margin-bottom: 0.5rem;
}

.phone-modal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.phone-number-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-orange);
    background: rgba(232, 117, 11, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    border: 1px solid rgba(232, 117, 11, 0.2);
    user-select: all;
    cursor: text;
}

.phone-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-modal-actions .btn {
    min-width: 160px;
}

.phone-copy-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #81c784;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.phone-copy-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* Old reveal removed - using new reveal-section and reveal-item classes */

/* ==========================================
   REVIEWS / BEWERTUNGEN
   ========================================== */
#bewertungen {
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Reviews Summary */
.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(232, 117, 11, 0.1);
    flex-wrap: wrap;
}

.reviews-summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary-orange);
    line-height: 1;
    text-shadow: 0 0 30px rgba(232, 117, 11, 0.3);
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars svg {
    width: 28px;
    height: 28px;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.reviews-summary-google {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray-light);
    font-weight: 500;
}

/* Reviews Loading State */
.reviews-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    width: 100%;
    color: var(--text-gray);
}

.reviews-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(232, 117, 11, 0.2);
    border-top-color: var(--primary-orange);
}

.reviews-wrapper {
    overflow: hidden;
    margin: 0 -1rem;
    padding: 1rem;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 300px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(232, 117, 11, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(232, 117, 11, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(232, 117, 11, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 20px;
    height: 20px;
}

.review-stars .star-filled {
    fill: #FBBC05;
    stroke: #FBBC05;
}

.review-stars .star-empty {
    fill: none;
    stroke: var(--text-gray);
}

.review-text {
    color: var(--text-gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-gray);
}

.review-google-badge svg {
    width: 16px;
    height: 16px;
}

/* Reviews Controls */
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(232, 117, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-nav:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.review-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-orange);
    transition: stroke 0.3s ease;
}

.review-nav:hover svg {
    stroke: white;
}

.review-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.review-nav:disabled:hover {
    background: var(--bg-card);
    border-color: rgba(232, 117, 11, 0.2);
}

.review-nav:disabled:hover svg {
    stroke: var(--primary-orange);
}

.reviews-dots {
    display: flex;
    gap: 0.5rem;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(232, 117, 11, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot:hover {
    background: rgba(232, 117, 11, 0.5);
}

.review-dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
}

/* Google Review Link */
.google-review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 50%;
    transform: translateX(-50%);
}

.google-review-link:hover {
    border-color: rgba(232, 117, 11, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Reviews */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 0rem);
        min-width: 280px;
    }
    
    .reviews-controls {
        gap: 1rem;
    }
    
    .review-nav {
        width: 40px;
        height: 40px;
    }
    
    .google-review-link {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .services-container { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .about-container, .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13, 13, 13, 0.98); flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(232, 117, 11, 0.1); backdrop-filter: blur(20px); }
    .nav-links.active { display: flex; }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .service-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-logo, .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    
    /* Service Card Mobile Fixes */
    .service-card {
        aspect-ratio: 1 / 1.1;
    }
    
    .service-card-icon {
        top: 35%;
        width: 40px;
        height: 40px;
    }
    
    .service-card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-card h4 {
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
        line-height: 1.2;
    }
    
    .service-card-overlay {
        padding: 0.75rem;
    }
    
    .service-card-overlay p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .service-category {
        padding: 1.25rem;
    }
    
    .service-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .service-category h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    
    .service-card {
        aspect-ratio: 1 / 1.2;
    }
    
    .service-card-icon {
        top: 30%;
        width: 35px;
        height: 35px;
    }
    
    .service-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-card h4 {
        font-size: 0.85rem;
        padding: 0.5rem 0.25rem;
    }
    
    .service-card-overlay p {
        font-size: 0.7rem;
    }
}
