:root {
    /* New Color Palette: Trust Blue & Conversion Orange (Light Theme) */
    --primary-blue: #004aad;
    --primary-blue-hover: #003785;
    --accent-orange: #ff6600;
    --accent-orange-hover: #e55c00;
    
    --bg-main: #ffffff;
    --bg-alt: #f4f6f9;
    --bg-card: #ffffff;
    
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0, 74, 173, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utility */
.text-primary { color: var(--accent-orange); }
.text-platinum { color: var(--text-muted); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

header.sticky {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary-blue); }
.nav-links a:hover::after { width: 100%; }

.contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    background: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-phone i { color: #ffffff; }
.contact-phone:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 120px 5% 60px;
    position: relative;
    background: url('images/hero_bg.png') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter overlay for light theme feel */
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.hero-subtitle {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.hero-title span {
    color: var(--accent-orange);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    font-size: 1.15rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-benefits li i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    background: rgba(255, 102, 0, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.hero-form-wrapper {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-blue);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.form-group {
    margin-bottom: 0px;
    position: relative;
}

.form-control {
    width: 100%;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    font-size: 1.2rem;
    padding: 16px;
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

/* Services */
.services {
    padding: 100px 5%;
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--accent-orange);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Why Us */
.why-us {
    padding: 100px 5%;
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
    background: rgba(255, 102, 0, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-inline: auto;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Steps */
.steps {
    padding: 100px 5%;
    background: var(--bg-alt);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: var(--border-light);
    z-index: 1;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 3px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: var(--primary-blue);
    color: #ffffff;
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* SEO Content */
.seo-content {
    padding: 80px 10%;
    background: var(--bg-main);
}

.seo-article {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
}

.seo-article h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 40px 0 20px;
    border-bottom: 3px solid var(--accent-orange);
    padding-bottom: 10px;
    display: inline-block;
}

.seo-article h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 35px 0 15px;
    position: relative;
    padding-left: 20px;
}

.seo-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: var(--primary-blue);
    border-radius: 3px;
}

.seo-article p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #334155;
    clear: none;
}

.seo-img-right {
    float: right;
    width: 320px;
    max-width: 45%;
    margin: 5px 0 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.seo-img-left {
    float: left;
    width: 320px;
    max-width: 45%;
    margin: 5px 30px 20px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Clearfix for article */
.seo-article::after {
    content: "";
    display: table;
    clear: both;
}

.seo-article ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.seo-article li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #334155;
}

.seo-article li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}



/* Testimonials */
.testimonials {
    padding: 100px 5%;
    background: var(--primary-blue);
    color: #ffffff;
}

.testimonials .section-title, 
.testimonials .section-subtitle {
    color: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    color: white;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: white;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* FAQ */
.faq {
    padding: 100px 5%;
    background: var(--bg-alt);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-dark);
}

.faq-question:hover, .faq-item.active .faq-question {
    color: var(--primary-blue);
    background: var(--bg-alt);
}

.faq-icon {
    transition: var(--transition);
    color: var(--accent-orange);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
}

/* Footer */
/* Share Band */
.share-band {
    background: #ffffff;
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.share-band h3 {
    color: var(--primary-blue);
    font-size: 1.35rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.social-share-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.share-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #ffffff;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.share-link:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.share-link i {
    font-size: 1.1rem;
}

/* Specific Brand Colors for Share Links ICONS ONLY */
.share-link.btn-kleinanzeigen i { color: #86b817; }
.share-link.btn-ebay i { color: #e53238; }
.share-link.btn-facebook i { color: #1877F2; }
.share-link.btn-x i { color: #000000; }
.share-link.btn-linkedin i { color: #0A66C2; }
.share-link.btn-whatsapp i { color: #25D366; }
.share-link.btn-telegram i { color: #26A5E4; }
.share-link.btn-messenger i { color: #00B2FF; }
.share-link.btn-reddit i { color: #FF4500; }
.share-link.btn-pinterest i { color: #E60023; }
.share-link.btn-tumblr i { color: #35465C; }
.share-link.btn-instagram i { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.share-link.btn-tiktok i { color: #010101; }
.share-link.btn-youtube i { color: #FF0000; }
.share-link.btn-snapchat i { color: #e5d500; }
.share-link.btn-discord i { color: #5865F2; }

/* The X button has no text in the image */
.share-link.btn-x { padding: 8px 14px; }

/* Copy Button Specific */
.btn-copy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 20px;
    background: #f97316; /* Orange color matching image */
    border: none;
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-link:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(249,115,22,0.25);
}

/* Footer Content */
footer {
    background: #0f172a;
    padding: 60px 5% 20px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-about .logo {
    color: #ffffff;
}

.footer-about p {
    color: #94a3b8;
    margin: 20px 0;
    max-width: 400px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
    color: white;
}

.footer-socials a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: var(--primary-blue);
}

.scroll-top {
    background: #ffffff;
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    border: 1px solid var(--border-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-top:hover {
    background: var(--primary-blue);
    color: white;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 140px;
    }
    .hero-title { font-size: 3rem; }
    .hero-content { padding-right: 0; }
    .hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    }
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-container { flex-direction: column; gap: 40px; }
    .steps-container::before { display: none; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: #ffffff;
        flex-direction: column;
        padding: 100px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: block; }
    .contact-phone { display: none; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    
    .social-share-grid { gap: 10px; }
    .btn-copy-link { width: 100%; justify-content: center; }

    .seo-article { padding: 0; }
    .seo-content { padding: 60px 5%; }
    .form-grid { grid-template-columns: 1fr; }
    .hero-form-wrapper { padding: 25px 15px; }
    .seo-img-right, .seo-img-left {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        display: block;
    }
}
