/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

.logo i {
    margin-right: 0.5rem;
    color: #27ae60;
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: #27ae60;
    transform: translateY(-1px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: #27ae60;
}

nav ul li a.active::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Subpage Heroes (About/Services/Contact) */
.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, #27ae60 0%, #764ba2 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease-in-out infinite;
    color: white;
    padding: 140px 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-icon,
.services-hero .hero-icon,
.contact-hero .hero-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.about-hero p,
.services-hero p,
.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.92;
    font-weight: 300;
    max-width: 760px;
    margin: 0 auto;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #27ae60 0%, #764ba2 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease-in-out infinite;
    color: white;
    padding: 140px 2rem 6rem;
    display: flex;
    align-items: center;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.03"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badges {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
}

.badge i {
    color: rgba(255,255,255,0.92);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn.primary {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.btn.secondary:hover {
    background-color: white;
    color: #667eea;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.placeholder-image {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: float 4.5s ease-in-out infinite;
    will-change: transform;
}

/* Keep the laptop icon on the homepage hero static */
.hero .placeholder-image {
    animation: none !important;
    transform: none !important;
    will-change: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-16px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(16px); }
}

@keyframes pulseGlow {
    0%,100% { box-shadow: 0 20px 40px rgba(39,174,96,0.3); }
    50% { box-shadow: 0 32px 64px rgba(39,174,96,0.5); }
}

/* Page Header */
.page-header {
    padding: 120px 2rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.page-header::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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2327ae60" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.3rem;
    color: #5a6c7d;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Features */
.features {
    padding: 6rem 2rem;
    background-color: #fff;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #27ae60, transparent);
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(39, 174, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
    color: #2ecc71;
}

.feature h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature p {
    color: #5a6c7d;
    font-weight: 300;
    line-height: 1.6;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.about-content .container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 4rem 3rem;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    margin-bottom: 2rem;
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #27ae60;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.benefit i {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
    display: block;
}

.benefit h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit p {
    color: #5a6c7d;
    font-weight: 300;
    line-height: 1.6;
}

.about-image .placeholder-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 20px;
    font-size: 5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Services Content */
.services-content {
    padding: 3.5rem 0 5rem;
    background-color: #fff;
}

.services-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.25rem;
    margin-top: 0;
}

.service-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(39, 174, 96, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71, #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: #2ecc71;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: #5a6c7d;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* CTA */
.cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Contact Content */
.contact-content {
    padding: 4rem 0;
}

.contact-content .container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 4rem 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 2.5rem;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    padding: 0;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background-color: #f8f9fa;
    margin-top: 0.2rem;
    flex: 0 0 auto;
}

.checkbox-label span {
    display: block;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #27ae60;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.contact-info > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #27ae60;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-item i {
    color: #27ae60;
    margin-right: 1.5rem;
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.contact-item div h3 {
    margin-bottom: 0.3rem;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item div p {
    color: #5a6c7d;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.contact-item div small {
    color: #27ae60;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Social Links */
.social-links a:hover {
    color: #4CAF50;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::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 100 100"><defs><pattern id="footer-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #27ae60;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #27ae60;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links ul li a.active {
    color: white;
}

.footer-links ul li a.active::before {
    width: 100%;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    line-height: 1.6;
}

.footer-legal {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.footer-legal p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.footer-legal a {
    color: #27ae60;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #2ecc71;
    text-decoration: underline;
}

/* Legal Pages */
.legal-hero {
    padding: 120px 2rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.legal-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 100 100"><defs><pattern id="legal-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2327ae60" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-dots)"/></svg>');
    pointer-events: none;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.legal-hero p {
    font-size: 1.3rem;
    color: #5a6c7d;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.legal-content h1, .legal-content h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.legal-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    border-bottom: 3px solid #27ae60;
    padding-bottom: 1rem;
    margin-top: 3rem;
}

.legal-content h3 {
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    font-weight: 300;
}

.legal-content ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
    color: #5a6c7d;
}

.legal-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.legal-content li::before {
    content: "•";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Reveal Animation (sichtbar by default) */
.feature,
.service-card,
.benefit {
    opacity: 1;
    transform: translateY(0);
}

.feature.fade-in,
.service-card.fade-in,
.benefit.fade-in {
    animation: simpleReveal 0.6s cubic-bezier(.25,.8,.25,1) both;
}

@keyframes simpleReveal {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
    }

    .logo-img {
        height: 32px;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 6rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    nav ul.nav-active {
        transform: translateX(0);
    }

    nav ul li {
        margin: 1rem 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .burger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .hero {
        padding: 120px 2rem 4rem;
        text-align: center;
        min-height: auto;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .placeholder-image {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features {
        padding: 4rem 1rem;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        padding: 4rem 1rem;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 2rem auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-content {
        padding: 3rem 0 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        padding: 3rem 0;
        margin: 0;
    }

    .contact-content .container {
        padding: 2rem;
        margin: 2rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form, .contact-info {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        margin: 2rem 0;
    }

    .legal-content {
        padding: 4rem 1rem;
        margin: 2rem auto;
    }

    .legal-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature {
        padding: 2rem 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form, .contact-info {
        padding: 1.5rem;
    }
}

/* Premium polish (subtle, reversible via style.backup-2026-02-11.css) */
:root {
    --bg: #f6f7fb;
    --surface: #ffffff;
    --text: #1f2d3d;
    --muted: #55657a;
    --accent: #27ae60;
    --accent-2: #2ecc71;
    --shadow-sm: 0 6px 18px rgba(17, 24, 39, 0.08);
    --shadow-md: 0 14px 34px rgba(17, 24, 39, 0.12);
    --ring: 0 0 0 3px rgba(39, 174, 96, 0.22);
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero p,
.about-hero p,
.services-hero p,
.contact-hero p {
    max-width: 62ch;
}

header {
    box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

/* Cards / surfaces */
.feature,
.service-card,
.benefit,
.contact-form,
.contact-info,
.about-content .container,
.contact-content .container {
    box-shadow: var(--shadow-sm);
}

.feature:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Buttons: slightly calmer */
.btn {
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.btn.primary:hover,
.btn.secondary:hover {
    transform: translateY(-2px);
}

/* Alternate section styling (used for the 2nd features block on the home page) */
.features.alt {
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f9 100%);
}

/* Focus / accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: var(--ring);
    border-radius: 10px;
}

nav ul li a:focus-visible {
    border-radius: 8px;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0.75rem;
    background: #ffffff;
    color: #1f2d3d;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    z-index: 2000;
}

.skip-link:focus {
    left: 0.75rem;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.form-status.success {
    color: #1f7a3a;
}

/* One-color theme override (removes green→purple gradients) */
:root {
    --accent: #46b982;
    --accent-dark: #3f8a71;
    --accent-darker: #2f6a55;
    --accent-contrast: #ffffff;
    --ring: 0 0 0 3px rgba(70, 185, 130, 0.22);
}

header {
    background: var(--accent-darker);
}

/* Hero backgrounds: solid green, no gradient animation */
.hero,
.about-hero,
.services-hero,
.contact-hero {
    background: var(--accent-dark);
    animation: none;
    background-size: auto;
}

/* Keep subtle grain, but avoid any multi-color effect */
.hero::before {
    opacity: 0.22;
}

/* Primary buttons: solid accent */
.btn.primary {
    background: var(--accent);
    color: var(--accent-contrast);
}

.btn.primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 10px 28px rgba(70, 185, 130, 0.28);
}

/* Secondary button hover should not introduce purple */
.btn.secondary:hover {
    color: var(--accent-darker);
}

/* Decorative card top-borders: remove multi-color gradients */
.service-card::before {
    background: var(--accent);
}

.feature::before {
    background: var(--accent);
}

nav ul li a::after {
    background: var(--accent);
}

/* Icons and accents: ensure consistent green */
.logo i,
.feature i,
.benefit i,
.service-card i,
.footer-logo i,
.footer-links h3,
.footer-contact h3 {
    color: var(--accent);
}

/* Trust badges: keep monochrome green theme */
.badge {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.24);
}

/* Placeholder image: remove any green→green gradient for strict single-color look */
.about-image .placeholder-image {
    background: var(--accent);
    animation: none;
}