/* RESET & BASIS-EINSTELLUNGEN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f8f9ff;
    color: #333;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Particle Network Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* HEADER / NAVIGATION */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
}

nav ul li a.active,
nav ul li a:hover {
    color: #3b82f6;
    font-weight: bold;
}

/* HERO-BEREICH */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 130px 5% 100px;
    min-height: 90vh;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.content {
    max-width: 500px;
    flex: 1;
    min-width: 300px;
}

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #3b82f6;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    line-height: 1.2;
}

.highlight {
    color: #3b82f6;
}

p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: #3b82f6;
    color: #fff;
}

.primary:hover {
    background: #2563eb;
}

.secondary {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.secondary:hover {
    background: #3b82f6;
    color: #fff;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1/1;
    background: #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* ALLGEMEINER CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Zusätzlicher Abstand für Container */
}

/* SERVICES-SEKTION */
.services-section {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Falls du einen einheitlichen Hintergrund möchtest, 
       auskommentiert lassen:
       background-color: #f9f9f9;
    */
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-tag {
    display: inline-block;
    background-color: #eef2ff; /* Heller Blauton */
    color: #446eff;           /* Akzentfarbe */
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.services-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    padding: 2rem;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-icon img {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* ÜBER MICH - SEKTION (GRID-VERSION) */
.about-section {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Falls du einen einheitlichen Hintergrund möchtest,
       auskommentiert lassen:
       background-color: #f9f9f9;
    */
}

.about-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem; /* Abstand zwischen den Spalten */
    align-items: center;  /* Vertikale Ausrichtung */
    justify-items: center;/* Horizontale Ausrichtung */
}

.about-text {
    width: 100%;
    text-align: left;
}

.about-tag {
    display: inline-block;
    background-color: #eef2ff; /* Heller Blauton */
    color: #446eff;           /* Akzentfarbe */
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* SKILL-BARS */
.skills {
    margin-bottom: 2rem;
}

.skill {
    margin-bottom: 1rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.skill-percentage {
    font-weight: 600;
}

.skill-bar {
    background-color: #e5e5e5;
    border-radius: 4px;
    width: 100%;
    height: 8px;
    position: relative;
}

.skill-bar-fill {
    background-color: #446eff; /* Akzentfarbe */
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* BUTTON (PRIMÄR) */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    background-color: #446eff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #2f50cc;
}

/* BILD-BEREICH */
.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background-color: #e3e3e3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 1.2rem;
}

/* RESPONSIVE: ÜBER MICH */
@media (max-width: 768px) {
    .about-section .container {
        grid-template-columns: 1fr; /* Einspaltiges Layout */
    }
    .about-text {
        text-align: center;
    }
}

/* PROJEKTE-SEKTION */
.projects-section {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.projects-header {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-tag {
    display: inline-block;
    background-color: #eef2ff;
    color: #446eff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.projects-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.projects-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    
}

.project-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
}

.project-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
}

.project-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: #eef2ff;
    color: #446eff;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #446eff;
    border: 2px solid #446eff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.btn-secondary:hover {
    background-color: #446eff;
    color: #fff;
}

/* CTA-SEKTION (KONTAKT) */
.cta-section {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    /* Falls du einen einheitlichen Hintergrund möchtest,
       auskommentiert lassen:
       background-color: #f9f9f9;
    */
}

.cta-tag {
    display: inline-block;
    background-color: #eef2ff;
    color: #446eff; /* Akzentfarbe */
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    background-color: #446eff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #2f50cc;
}
.btn-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    background-color: #3b82f6;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  .btn-primary:hover {
    background-color: #2563eb;
  }

/* FOOTER STYLES */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link, .legal-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover, .legal-link:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* RESPONSIVE ANPASSUNGEN */
@media (max-width: 1024px) {
    h2 {
        font-size: 36px;
    }
    
    .hero {
        padding: 30px 5%;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .service-cards,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section .container {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 28px;
    }
    
    p {
        font-size: 16px;
    }
    
    .image-placeholder {
        max-width: 300px;
    }
    
    .contact-form,
    .contact-info {
        min-width: 100%;
    }
}

/* NAVIGATION BUTTON */
.btn-contact {
    background-color: #3b82f6;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* PRICING-SEKTION */
.pricing-section {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 -2.5%;
}

.pricing-tag {
    display: inline-block;
    background-color: #eef2ff;
    color: #446eff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 -2.5%;
    width: 100%;
    box-sizing: border-box;
}

.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 2px solid #446eff;
    position: relative;
}

.pricing-badge {
    display: inline-block;
    background-color: #dbeafe;
    color: #3b82f6;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-badge {
    background-color: #446eff;
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #446eff;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: #666;
    margin-left: 0.5rem;
}

.pricing-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #446eff;
    font-weight: bold;
}

.pricing-optional {
    background-color: #f8f9ff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.pricing-optional p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.pricing-optional p strong {
    color: #333;
}

.pricing-optional .optional-price {
    font-size: 1rem !important;
    font-weight: bold !important;
    color: #446eff !important;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-optional ul {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 0;
}

.pricing-optional ul li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: #666;
    position: relative;
    padding-left: 1.2rem;
}

.pricing-optional ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #446eff;
    font-weight: bold;
}

.btn-pricing {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #446eff;
    color: #fff;
    border: 2px solid #446eff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-pricing:hover {
    background-color: #2f50cc;
    border-color: #2f50cc;
}

/* RESPONSIVE PRICING */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* KONTAKT-SEKTION */
.contact-section {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8f9ff;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-tag {
    display: inline-block;
    background-color: #eef2ff;
    color: #446eff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-content {
    display: flex;
    justify-content: center;
    
}

.contact-form {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group select {
    background-color: white;
    cursor: pointer;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    margin: 0;
}

.checkbox-label span {
    color: #555;
    font-size: 0.9rem;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #2563eb;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.info-card p {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    color: #3b82f6;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #3b82f6;
    color: white;
}

/* ANIMATIONEN */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
}

/* RESPONSIVE ANPASSUNGEN */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
    }
}

/* LEGAL SECTION */
.legal-section {
    background-color: #fff;
    padding: 4rem 5%;
    position: relative;
    z-index: 1;
    min-height: 70vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #446eff;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #446eff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #666;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

/* FOOTER */
.footer {
    background-color: #1a1f3a;
    color: white;
    padding: 3rem 5%;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #446eff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #446eff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 5%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* BLOG SEKTION */
.blog-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.blog-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.blog-tag {
    display: inline-block;
    background-color: #fef3c7;
    color: #b45309;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.blog-header p {
    max-width: 640px;
    margin: 0 auto;
    color: #4b5563;
}

.blog-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
    color: #111827;
}

.trend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #facc15);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.6);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px rgba(15, 23, 42, 0.12);
}

.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta .category {
    background: #eef2ff;
    color: #4338ca;
    padding: 0.15rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    color: #0f172a;
}

.blog-card p {
    color: #4b5563;
    font-size: 0.95rem;
    flex: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.blog-tags span {
    background: #f1f5f9;
    color: #0f172a;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

.blog-card a {
    color: #446eff;
    font-weight: 600;
    text-decoration: none;
}

.blog-empty-state {
    text-align: center;
    margin-top: 2rem;
    padding: 2.5rem 1.5rem;
    border: 2px dashed #c7d2fe;
    border-radius: 20px;
    color: #4b5563;
}

.blog-empty-state i {
    font-size: 2rem;
    color: #a855f7;
    margin-bottom: 0.5rem;
}

/* Skeleton Loader */
.skeleton {
    animation: pulse 1.2s ease-in-out infinite;
}

.skeleton-image {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
    background-size: 400% 100%;
}

.skeleton-line {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
    background-size: 400% 100%;
}

.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-40 { width: 40%; }

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

@media (max-width: 768px) {
    .blog-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-card {
        padding: 1.25rem;
    }
}

/* BLOG DETAILSEITE */
.blog-article-hero {
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 1;
}

.blog-article-hero h1 {
    font-size: 2.75rem;
    color: #0f172a;
    margin-top: 1rem;
}

.blog-article-subheadline {
    font-size: 1.1rem;
    color: #475569;
    max-width: 720px;
    margin-top: 0.5rem;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #446eff;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1rem;
}

.blog-article-meta {
    display: flex;
    gap: 1.5rem;
    color: #475569;
    font-size: 0.95rem;
}

.blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-article-section {
    padding: 0 0 4rem;
    position: relative;
    z-index: 1;
}

.blog-article-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.blog-article-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-article-tags span {
    background: #eef2ff;
    color: #312e81;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 1.4rem;
}

.blog-article-content p strong {
    color: #0f172a;
}

@media (max-width: 768px) {
    .blog-article-wrapper {
        padding: 1.5rem;
    }
    .blog-article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .blog-article-hero h1 {
        font-size: 2.2rem;
    }
}