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

:root {
    --primary: #2d5a7b;
    --primary-dark: #1a3d54;
    --accent: #e8a942;
    --accent-hover: #d49832;
    --text: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8fafc;
    --bg-cream: #faf8f5;
    --bg-dark: #1a2a3a;
    --white: #ffffff;
    --border: #e1e8ed;
    --success: #27ae60;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

/* Navigation */
.nav-wrapper {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo svg {
    width: 32px;
    height: 32px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px;
}

.nav-menu.active {
    display: block;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.hero-editorial .narrow-container {
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-editorial h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image {
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
}

/* Story Section */
.story-section {
    padding: 60px 20px;
}

.story-section.alt-bg {
    background: var(--bg-light);
}

.story-section.dark-bg {
    background: var(--bg-dark);
    color: var(--white);
}

.story-section.dark-bg h2,
.story-section.dark-bg h3 {
    color: var(--white);
}

.story-section.dark-bg p {
    color: rgba(255,255,255,0.85);
}

.story-heading {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--text);
    line-height: 1.3;
}

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

.story-text:last-child {
    margin-bottom: 0;
}

.inline-image {
    margin: 32px 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-cta {
    margin: 40px 0;
    padding: 32px;
    background: var(--bg-cream);
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.inline-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text);
}

/* Quote Block */
.quote-block {
    margin: 40px 0;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.quote-block::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    padding-left: 40px;
    margin-bottom: 16px;
}

.quote-author {
    font-size: 0.95rem;
    color: var(--text-light);
    padding-left: 40px;
}

/* Feature Cards Inline */
.feature-inline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.feature-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Services/Pricing Section */
.services-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 3px solid var(--accent);
}

.price-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.price-card-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-card-header h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 8px;
}

.price-card-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.price-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.price-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.form-section .section-header h2,
.form-section .section-header p {
    color: var(--white);
}

.form-section .section-header p {
    color: rgba(255,255,255,0.75);
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 28px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

.form-submit {
    text-align: center;
}

/* Testimonials */
.testimonials-flow {
    padding: 60px 20px;
    background: var(--bg-cream);
}

.testimonial-item {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-info h4 {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background: var(--primary);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

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

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

.sticky-cta-text {
    font-weight: 600;
    color: var(--text);
    display: none;
}

.sticky-cta .btn {
    flex-grow: 1;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    background: var(--white);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 60px 20px 30px;
    color: rgba(255,255,255,0.75);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.75);
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 32px;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin: 32px 0 16px;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin: 24px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* About Page */
.about-hero {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.about-hero h1 {
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 20px;
}

.about-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-text h2 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.team-section {
    padding: 60px 20px;
    background: var(--bg-cream);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.team-member {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    max-width: 280px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-light);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}

.team-member h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 8px;
}

.team-member span {
    font-size: 0.95rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Page */
.contact-hero {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 20px;
}

.contact-details {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-info h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Services Page */
.services-hero {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 60px 20px;
}

.service-detail {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-detail h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 16px;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.service-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

/* Urgency Banner */
.urgency-banner {
    background: var(--accent);
    color: var(--white);
    padding: 16px 20px;
    text-align: center;
}

.urgency-banner p {
    font-weight: 600;
    font-size: 1rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: block;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
    }

    .nav-menu ul {
        flex-direction: row;
        gap: 32px;
    }

    .hero-editorial h1 {
        font-size: 2.8rem;
    }

    .story-heading {
        font-size: 2.2rem;
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .price-card {
        flex: 1;
        min-width: 280px;
        max-width: 380px;
    }

    .feature-card {
        flex-direction: row;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-text {
        flex: 1;
    }

    .sticky-cta-inner {
        justify-content: center;
        gap: 24px;
    }

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

    .sticky-cta .btn {
        flex-grow: 0;
    }

    .about-split {
        flex-direction: row;
        align-items: center;
    }

    .about-image {
        flex: 1;
    }

    .about-text {
        flex: 1;
    }

    .contact-form {
        padding: 48px 40px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-editorial {
        padding: 100px 20px 120px;
    }

    .hero-editorial h1 {
        font-size: 3.2rem;
    }

    .story-section {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .pricing-cards {
        gap: 32px;
    }

    .stats-grid {
        gap: 80px;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}
