/* ============================================
   SolarBeratung – Professional Consulting Styles
   ============================================ */

/* --- Variables --- */
:root {
    --primary: #1e3a5f;
    --primary-light: #2a4f7f;
    --primary-dark: #152d4a;
    --accent: #d97706;
    --accent-light: #f59e0b;
    --accent-dark: #b45309;
    --dark: #0c1929;
    --dark-medium: #1a2d44;
    --light: #f8fafc;
    --light-warm: #fefce8;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Raleway', 'Segoe UI', Tahoma, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.25;
    font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}
.btn-nav {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}
.btn-nav:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.6rem 0;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}
.navbar.scrolled .logo-text { color: var(--dark); }
.logo-accent { color: var(--accent); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.navbar.scrolled .nav-links a:not(.btn) { color: var(--gray-700); }
.navbar.scrolled .nav-links a:not(.btn):hover { color: var(--primary); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, rgba(12,25,41,0.85) 0%, rgba(30,58,95,0.85) 50%, rgba(42,79,127,0.85) 100%), url('images/hero.png') center/cover no-repeat;
    overflow: hidden;
    padding: 8rem 0 4rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(217,119,6,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30,58,95,0.3) 0%, transparent 50%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(217,119,6,0.4);
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
}
.trust-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* --- Section Base --- */
.section {
    padding: 6rem 0;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.section-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
}
.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* --- Team Section --- */
.section-team {
    background: var(--light);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.team-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.team-avatar {
    margin-bottom: 1.25rem;
}
.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    letter-spacing: 0.05em;
}
.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}
.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.team-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.team-credentials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.team-credentials span {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: var(--radius);
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.service-features li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding-left: 1.25rem;
    position: relative;
}
.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* --- Process Section --- */
.section-process {
    background: var(--light);
}
.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}
.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.step-number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}
.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    padding-top: 0.25rem;
}
.step-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.testimonial-card blockquote p {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}
.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}
.author-info span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* --- Blog Section --- */
.section-blog {
    background: var(--light);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-placeholder {
    color: rgba(255,255,255,0.3);
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.blog-card-body h3 a {
    color: var(--dark);
    transition: color var(--transition);
}
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.blog-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}
.blog-link:hover { color: var(--accent-dark); }

/* --- FAQ Section --- */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-200);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 1rem;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
    line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}
.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* --- CTA Section --- */
.section-cta {
    background: var(--light);
}
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(217,119,6,0.15) 0%, transparent 60%);
}
.cta-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}
.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
    position: relative;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.4rem;
}
.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
}
.footer-contact {
    margin-top: 1.25rem;
}
.footer-contact p {
    font-size: 0.85rem;
    line-height: 1.8;
}
.footer-contact a { color: var(--accent-light); }
.footer-contact a:hover { color: var(--accent); }
.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: all var(--transition);
}
.footer-col ul a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* --- Blog Page --- */
.page-header {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 100%);
    padding: 8rem 0 3rem;
    text-align: center;
}
.page-header h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}
.page-header p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.blog-listing {
    padding: 4rem 0;
}
.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Blog Article Page --- */
.article-header {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 100%);
    padding: 8rem 0 3rem;
    text-align: center;
}
.article-header h1 {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.article-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}
.article-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}
.article-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: var(--dark);
}
.article-content p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    color: var(--gray-700);
}
.article-content ul, .article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}
.article-content strong {
    color: var(--dark);
}
.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--gray-600);
}
.article-cta {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--gray-200);
}
.article-cta h3 {
    margin-bottom: 0.75rem;
}
.article-cta p {
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}
.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}
.article-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}
.article-nav a:hover { color: var(--accent); }

/* --- Wissen Page --- */
.wissen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 0;
}
.wissen-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.wissen-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.wissen-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}
.wissen-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.wissen-card ul {
    list-style: none;
}
.wissen-card ul li {
    margin-bottom: 0.4rem;
}
.wissen-card ul li a {
    font-size: 0.88rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.wissen-card ul li a::before {
    content: '\2192';
    color: var(--accent);
    font-size: 0.85rem;
}
.wissen-card ul li a:hover {
    color: var(--accent);
}

/* --- Legal Pages --- */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}
.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
    color: var(--primary);
}
.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}
.legal-content p, .legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
}
.legal-content ul {
    list-style: disc;
    margin: 0.5rem 0 1rem 1.5rem;
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 999;
        align-items: flex-start;
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--gray-700) !important; font-size: 1rem; }
    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero h1 { font-size: 1.8rem; }
    .hero-trust { gap: 1.5rem; }
    .trust-divider { display: none; }
    .section { padding: 4rem 0; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid, .blog-listing-grid { grid-template-columns: 1fr; }
    .wissen-grid { grid-template-columns: 1fr; }
    .process-timeline::before { left: 35px; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .article-header { padding: 7rem 0 2rem; }
    .page-header { padding: 7rem 0 2rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.95rem; }
    .hero-trust { flex-direction: column; gap: 1rem; }
}


/* === Mobile Logo Size === */
@media (max-width: 768px) {
  .logo img, .nav-logo img, .navbar-brand img, .nav-brand img, .navbar__logo img {
    height: 36px !important;
  }
}