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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #c4a35a;
    --accent-hover: #d4b36a;
    --text-dark: #1a1a2e;
    --text-light: #f5f5f5;
    --text-muted: #6b7280;
    --bg-light: #fafafa;
    --bg-cream: #f8f6f2;
    --bg-dark: #1a1a2e;
    --border: #e5e5e5;
    --shadow: rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-logo span {
    color: var(--accent);
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1617137968427-85924c800a22?w=1200') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.hero-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--text-light);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.btn-dark {
    display: inline-block;
    background: var(--primary);
    color: var(--text-light);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-dark:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    z-index: -1;
}

.story-content {
    flex: 1;
}

.section-label {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.problem-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.problem-header h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.problem-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-left: 4px solid var(--accent);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.problem-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Solution Section */
.solution-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.solution-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.solution-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
}

.solution-intro p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.solution-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solution-row:nth-child(even) {
    flex-direction: row-reverse;
}

.solution-visual {
    flex: 1;
}

.solution-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.solution-info {
    flex: 1;
}

.solution-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.solution-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

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

.testimonials-header h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services Pricing */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: white;
    padding: 50px 40px;
    box-shadow: 0 15px 50px var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-top: 4px solid var(--accent);
}

.pricing-card.featured::before {
    content: 'Populär';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-dark);
    padding: 5px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pricing-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
}

.form-benefits li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
}

.form-container {
    flex: 1;
    background: white;
    padding: 50px;
    box-shadow: 0 20px 60px var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--accent-hover);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.trust-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--accent);
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.cookie-text a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--text-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 163, 90, 0.5);
}

/* Urgency Banner */
.urgency-banner {
    background: var(--accent);
    color: var(--text-dark);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

/* About Page */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
}

.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--bg-cream);
}

.content-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Services Page */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s;
}

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

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

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    color: var(--accent);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-muted);
}

.contact-form-wrapper {
    flex: 1;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    padding: 40px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text-muted);
}

.legal-content ul li {
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .story-grid,
    .solution-row,
    .solution-row:nth-child(even),
    .form-wrapper,
    .content-grid,
    .content-grid.reverse,
    .contact-grid {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero::before {
        width: 100%;
        opacity: 0.2;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        gap: 40px;
    }

    .trust-grid {
        gap: 40px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .sticky-cta a {
        justify-content: center;
    }
}
