/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Temporary: Disable all animations for performance */
* {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1s !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* VBA-Expert Logo */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.vba-expert-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-squares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    width: 32px;
    height: 32px;
}

.square {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.square-orange {
    background-color: #F47B30;
}

.square-lime {
    background-color: #9CCC65;
}

.square-cyan {
    background-color: #29B6F6;
}

.square-yellow {
    background-color: #FFCA28;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-vba {
    font-size: 1.2rem;
    font-weight: 700;
    color: #76C043;
    letter-spacing: 0.5px;
}

.logo-expert {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2E7D32;
    letter-spacing: 1px;
}

/* Logo Hover Effects */
.logo-link:hover .square {
    transform: scale(1.1);
}

.logo-link:hover .logo-vba {
    color: #9CCC65;
}

.logo-link:hover .logo-expert {
    color: #76C043;
}

/* Profile Image Styles */
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #76C043;
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.4);
}

.hero-graphic .profile-image {
    width: 300px;
    height: 300px;
    border: 6px solid #76C043;
    box-shadow: 0 12px 48px rgba(46, 125, 50, 0.4);
}

/* Hero Layout Adjustments */
.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-graphic {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .hero-graphic .profile-image {
        width: 200px;
        height: 200px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2E7D32;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2E7D32;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2E7D32 0%, #76C043 50%, #388E3C 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    /* animation: slideInLeft 1s ease-out; */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2E7D32;
    color: white;
    border-color: #2E7D32;
}

.btn-primary:hover {
    background: #388E3C;
    border-color: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* animation: slideInRight 1s ease-out; */
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-graphic i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f1f5f9;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.skill-item:hover {
    transform: translateY(-2px);
}

.skill-item i {
    color: #76C043;
    font-size: 1.25rem;
}

.skill-item span {
    font-weight: 500;
    color: #334155;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e5e7eb;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D32 0%, #76C043 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #334155;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #76C043;
    font-weight: bold;
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: #f1f5f9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.project-image i {
    font-size: 4rem;
    color: #2e7d32;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.project-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: #E8F5E8;
    color: #2E7D32;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #E8F5E8;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2E7D32;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
}

.contact-form {
    background: #f1f5f9;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E7D32;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2E7D32;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #76C043;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    color: #94a3b8;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #76C043;
}

.separator {
    color: #64748b;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skills {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic i {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* VBA-Expert Akzentfarben */
.accent-orange {
    color: #F47B30;
}

.accent-lime {
    color: #9CCC65;
}

.accent-cyan {
    color: #29B6F6;
}

.accent-yellow {
    color: #FFCA28;
}

.accent-orange-bg {
    background-color: #F47B30;
}

.accent-lime-bg {
    background-color: #9CCC65;
}

.accent-cyan-bg {
    background-color: #29B6F6;
}

.accent-yellow-bg {
    background-color: #FFCA28;
}

/* Service Price Styles */
.service-price {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.price-label {
    font-size: 0.875rem;
    color: #64748b;
    display: block;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2E7D32;
    display: block;
}

.price-unit {
    font-size: 0.875rem;
    color: #64748b;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7D32 0%, #76C043 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Project Results */
.project-results {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.result-item i {
    font-size: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #76C043;
}

.testimonial-content p {
    font-style: italic;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Impressum/Datenschutz/AGB Styles */
.impressum-content,
.datenschutz-content,
.agb-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-section,
.datenschutz-section,
.agb-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.impressum-section:last-child,
.datenschutz-section:last-child,
.agb-section:last-child {
    border-bottom: none;
}

.impressum-section h2,
.datenschutz-section h2,
.agb-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.impressum-section h3,
.datenschutz-section h3,
.agb-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.impressum-section p,
.datenschutz-section p,
.agb-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.impressum-section ul,
.datenschutz-section ul,
.agb-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.impressum-section li,
.datenschutz-section li,
.agb-section li {
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* Form Enhancements */
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background-color: white;
}

.form-group select:focus {
    outline: none;
    border-color: #2E7D32;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 18px 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0.1rem 0.75rem;
    align-items: start;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #334155;
}

.privacy-grid input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #2E7D32;
    grid-row: 1 / 5;
    margin-top: 2px;
}

.privacy-text-line {
    display: block;
}

.privacy-text-line a {
    color: #76c043;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-text-line a:hover {
    color: #2e7d32;
}

/* VBA Code Animation */
.vba-code-animation {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.vba-code-animation.fade-out {
    opacity: 0;
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.code-line {
    margin-bottom: 4px;
    opacity: 0;
    animation: type-code-line 0.3s ease-in forwards;
}

.code-line:nth-child(1) { animation-delay: 0.5s; }
.code-line:nth-child(2) { animation-delay: 0.8s; }
.code-line:nth-child(3) { animation-delay: 1.1s; }
.code-line:nth-child(4) { animation-delay: 1.4s; }
.code-line:nth-child(5) { animation-delay: 1.7s; }
.code-line:nth-child(6) { animation-delay: 2.0s; }
.code-line:nth-child(7) { animation-delay: 2.3s; }
.code-line:nth-child(8) { animation-delay: 2.6s; }
.code-line:nth-child(9) { animation-delay: 2.9s; }
.code-line:nth-child(10) { animation-delay: 3.2s; }
.code-line:nth-child(11) { animation-delay: 3.5s; }
.code-line:nth-child(12) { animation-delay: 3.8s; }
.code-line:nth-child(13) { animation-delay: 4.1s; }
.code-line:nth-child(14) { animation-delay: 4.4s; }

.keyword { color: #569cd6; font-weight: bold; }
.function { color: #dcdcaa; }
.variable { color: #9cdcfe; }
.type { color: #4ec9b0; }
.string { color: #ce9178; }
.number { color: #b5cea8; }
.comment { color: #6a9955; font-style: italic; }
.property { color: #9cdcfe; }

.cursor-blink {
    color: #ffffff;
    animation: blink 1s infinite;
    font-size: 16px;
    margin-left: 4px;
}

@keyframes type-code-line {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Cartoon Rocket Animation */
.rocket-container {
    position: relative;
    width: 120px;
    height: 150px;
    margin: 0 auto;
    cursor: pointer;
}

.cartoon-rocket {
    position: relative;
    width: 80px;
    height: 120px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Rocket Image */
.rocket-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Engine Flame */
.engine-flame {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.flame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    animation: fast-flame-flicker 0.03s ease-in-out infinite alternate;
}

.flame-1 {
    width: 25px;
    height: 35px;
    background: linear-gradient(0deg, #ff0000, #ff4500);
    animation-delay: 0s;
}

.flame-2 {
    width: 20px;
    height: 30px;
    background: linear-gradient(0deg, #ff4500, #ff6b35);
    animation-delay: 0.005s;
}

.flame-3 {
    width: 18px;
    height: 25px;
    background: linear-gradient(0deg, #ff6b35, #ffa500);
    animation-delay: 0.01s;
}

.flame-4 {
    width: 15px;
    height: 20px;
    background: linear-gradient(0deg, #ffa500, #ffff00);
    animation-delay: 0.015s;
}

.flame-5 {
    width: 12px;
    height: 15px;
    background: linear-gradient(0deg, #ffff00, #ffffff);
    animation-delay: 0.02s;
}

/* Smoke Trail */
.smoke-trail {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.smoke {
    position: absolute;
    background: radial-gradient(circle, rgba(169, 169, 169, 0.8), transparent);
    border-radius: 50%;
    animation: smoke-rise 2s ease-out infinite;
}

.smoke-1 {
    width: 8px;
    height: 8px;
    left: 10px;
    animation-delay: 0s;
}

.smoke-2 {
    width: 6px;
    height: 6px;
    left: 20px;
    animation-delay: 0.5s;
}

.smoke-3 {
    width: 4px;
    height: 4px;
    left: 30px;
    animation-delay: 1s;
}

/* Hover Effects */
.cartoon-rocket:hover {
    transform: scale(1.05);
}

.cartoon-rocket:hover .engine-flame {
    opacity: 1;
}

.cartoon-rocket:hover .smoke-trail {
    opacity: 1;
}

/* Launch Animation */
.cartoon-rocket.launching {
    animation: rocket-launch 3s ease-out forwards;
}

.cartoon-rocket.launching .engine-flame {
    opacity: 1;
    animation: engine-blast 0.1s ease-in-out infinite;
}

.cartoon-rocket.launching .smoke-trail {
    opacity: 1;
}

/* Animations */
@keyframes fast-flame-flicker {
    0% { 
        transform: translateX(-50%) scaleY(1) scaleX(1) rotate(0deg);
        opacity: 1;
    }
    20% { 
        transform: translateX(-50%) scaleY(1.4) scaleX(0.6) rotate(-3deg);
        opacity: 0.8;
    }
    40% { 
        transform: translateX(-50%) scaleY(0.7) scaleX(1.3) rotate(2deg);
        opacity: 0.9;
    }
    60% { 
        transform: translateX(-50%) scaleY(1.5) scaleX(0.5) rotate(-2deg);
        opacity: 0.7;
    }
    80% { 
        transform: translateX(-50%) scaleY(0.8) scaleX(1.1) rotate(1deg);
        opacity: 0.8;
    }
    100% { 
        transform: translateX(-50%) scaleY(1.2) scaleX(0.8) rotate(0deg);
        opacity: 1;
    }
}

@keyframes engine-blast {
    0% { transform: translateX(-50%) scaleY(1); }
    100% { transform: translateX(-50%) scaleY(2); }
}

@keyframes smoke-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-40px) scale(1.5);
        opacity: 0;
    }
}

@keyframes rocket-launch {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    20% {
        transform: translateY(-20px) rotate(-2deg);
    }
    50% {
        transform: translateY(-50px) rotate(-5deg);
    }
    80% {
        transform: translateY(-80px) rotate(-8deg);
    }
    100% {
        transform: translateY(-120vh) rotate(-15deg);
        opacity: 0;
    }
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.social-links a:hover {
    color: #76c043;
    background: rgba(118, 192, 67, 0.1);
    transform: translateX(5px);
}

.social-links a i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-links a span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contextual Links */
.contextual-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.contextual-links a {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contextual-links a:hover {
    color: #76C043;
    text-decoration: underline;
}

/* Button Links Styling */
.btn-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #2E7D32;
    border: 2px solid #2E7D32;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-link:hover {
    background: #2E7D32;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.btn-link-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2E7D32;
    color: white;
    border: 2px solid #2E7D32;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-link-secondary:hover {
    background: #76C043;
    border-color: #76C043;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 192, 67, 0.3);
}

.contextual-links .separator {
    color: #64748b;
    margin: 0 0.5rem;
}

/* Matrix Style Code Transition - Optimized */
.matrix-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    overflow: hidden;
}

.matrix-transition.active {
    opacity: 1;
    visibility: visible;
}

.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.matrix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.matrix-content {
    text-align: center;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.matrix-logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    /* animation: matrixGlow 2s ease-in-out infinite alternate; */
}

.matrix-text {
    font-size: 1.2rem;
    opacity: 0.8;
    /* animation: matrixFlicker 1.5s ease-in-out infinite; */
}

.matrix-progress {
    width: 300px;
    height: 4px;
    background: rgba(0, 255, 0, 0.2);
    border-radius: 2px;
    margin: 2rem auto 0;
    overflow: hidden;
}

.matrix-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00cc00);
    width: 0%;
    animation: matrixProgress 2s ease-out forwards;
    box-shadow: 0 0 10px #00ff00;
}

/* Matrix Animations - Disabled for Performance */
@keyframes matrixGlow {
    0%, 100% { 
        text-shadow: none;
        opacity: 1;
    }
}

@keyframes matrixFlicker {
    0%, 100% { opacity: 1; }
}

@keyframes matrixProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Matrix Code Characters - Disabled for Performance */
.matrix-char {
    position: absolute;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    opacity: 0.3;
    /* animation: matrixFall 3s linear infinite; */
    /* will-change: transform, opacity; */
}

@keyframes matrixFall {
    0% {
        transform: translateY(-50vh);
        opacity: 0.8;
    }
    100% {
        transform: translateY(50vh);
        opacity: 0;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Audience Content */
.audience-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.audience-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.audience-features {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.audience-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    color: #2c3e50;
}

.audience-features i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Project Showcase Styles (for referenzen.html) */
.project-showcase {
    margin: 4rem 0;
    padding: 3rem 0;
}

.project-showcase.reverse .project-content {
    flex-direction: row-reverse;
}

.project-showcase .project-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.project-showcase .project-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.project-showcase .project-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-showcase .project-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.project-showcase .project-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.project-showcase .project-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

.project-showcase .project-features i {
    color: #2E7D32;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.project-showcase .project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-showcase .tech-tag {
    background: linear-gradient(135deg, #2E7D32 0%, #76C043 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-showcase .project-image {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    padding: 1rem;
    overflow: visible;
}

.project-showcase .project-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    max-width: 100%;
    cursor: pointer;
}


/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.image-modal-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-modal.active .image-modal-content {
    transform: scale(1);
}

.image-modal img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: -10px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Company Tag Styles */
.company-tag {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.company-tag img {
    max-height: 30px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.company-tag img:hover {
    opacity: 1;
}

.company-tag .company-name {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    font-style: italic;
}

.company-tag .company-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

/* Project Meta Information */
.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.project-category,
.project-impact,
.project-effect {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.project-category i,
.project-impact i,
.project-effect i {
    color: #2e7d32;
    width: 16px;
    text-align: center;
}

.project-category span,
.project-impact span,
.project-effect span {
    font-weight: 500;
}

/* Service Meta Information */
.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.service-category,
.service-impact,
.service-effect {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.service-category i,
.service-impact i,
.service-effect i {
    color: #2e7d32;
    width: 16px;
    text-align: center;
}

.service-category span,
.service-impact span,
.service-effect span {
    font-weight: 500;
}

/* About Page Specific Styles */
.highlight-text {
    background: linear-gradient(135deg, #2e7d32, #76c043);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.quote {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-left: 4px solid #2e7d32;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    font-style: italic;
}

.quote i {
    color: #2e7d32;
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.3;
}

.quote p {
    margin: 0;
    padding-left: 3rem;
    font-size: 1.1rem;
    color: #334155;
}

/* Profile Showcase */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-image-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 50px auto;
}

.profile-image-large {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #76c043;
    box-shadow: 0 20px 60px rgba(46, 125, 50, 0.4);
    position: relative;
    z-index: 2;
}

.profile-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2e7d32, #76c043, #2e7d32);
    opacity: 0.3;
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: #2e7d32;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: -5%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2e7d32, #76c043);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Programmer Animation */
.programmer-animation {
    position: relative;
    width: 320px;
    height: 220px;
    margin: 0 auto;
}

.monitor {
    position: relative;
    width: 280px;
    height: 180px;
    background: #2d2d2d;
    border-radius: 12px;
    border: 4px solid #444;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.screen {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #1a1a1a;
    border-radius: 6px;
    padding: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-text {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #76c043;
    line-height: 1.4;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-blink {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: #76c043;
    font-size: 16px;
    animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.monitor-base {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #444;
    border-radius: 0 0 6px 6px;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .audience-features {
        text-align: center;
    }
    
    .audience-features li {
        justify-content: center;
    }
    
    .project-showcase .project-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-showcase.reverse .project-content {
        flex-direction: column;
    }
    
    .project-showcase .project-text h3 {
        font-size: 1.5rem;
    }
    
    .project-showcase .project-description {
        font-size: 1rem;
    }
    
    .project-showcase .project-image {
        padding: 0.5rem;
    }
    
    .company-tag {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .company-tag img {
        max-height: 25px;
        max-width: 100px;
    }
    
    .company-tag .company-name {
        font-size: 0.8rem;
    }
    
    .project-meta,
    .service-meta {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .project-category,
    .project-impact,
    .project-effect,
    .service-category,
    .service-impact,
    .service-effect {
        font-size: 0.8rem;
    }
    
    .profile-showcase {
        width: 300px;
        height: 300px;
    }
    
    .profile-image-container {
        width: 200px;
        height: 200px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-icon i {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quote {
        padding: 1.5rem;
    }
    
    .quote p {
        padding-left: 2rem;
        font-size: 1rem;
    }
    
    .skills-interactive {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .skill-orb {
        width: 100px;
        height: 100px;
    }
    
    .orb-icon i {
        font-size: 2rem;
    }
    
    .skill-tooltip {
        bottom: -70px;
        padding: 0.8rem 1rem;
    }
    
    .skill-tooltip h3 {
        font-size: 0.9rem;
    }
    
    .skill-tooltip p {
        font-size: 0.8rem;
    }
    
    .particle-content h2 {
        font-size: 2rem;
    }
    
    .particle-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .programmer-animation {
        width: 250px;
        height: 180px;
    }
    
    .monitor {
        width: 220px;
        height: 150px;
    }
    
    .typing-text {
        font-size: 14px;
    }
    
    .cursor-blink {
        font-size: 14px;
    }
}
}