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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #27ae60;
    color: #fff;
}

.btn-cookie.accept:hover {
    background: #229954;
}

.btn-cookie.reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
    padding: 18px 0;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu li a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #2563eb;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    padding: 80px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 50px;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 650px;
    margin: 0 auto;
}

.hero-image {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.story-section.alternating {
    background: #f9fafb;
    padding: 80px 20px;
    max-width: 100%;
}

.story-section.final {
    background: #f0f4f8;
    padding: 80px 20px;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-column h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.narrow-column p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.inline-image {
    max-width: 900px;
    margin: 50px auto;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-cta-section {
    padding: 40px 20px;
    background: #1e3a8a;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
}

.cta-card h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #1e3a8a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #f0f4f8;
    transform: translateY(-2px);
}

.benefits-reveal {
    padding: 80px 20px;
    background: #ffffff;
}

.benefit-list {
    list-style: none;
    margin-top: 40px;
}

.benefit-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 28px;
    padding-left: 30px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 22px;
}

.benefit-list strong {
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-inline {
    padding: 60px 20px;
    background: #f0f4f8;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.quote {
    font-size: 20px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 16px;
}

.author {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
}

.cta-section-full {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-highlight {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-highlight h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-highlight p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 42px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #f0f4f8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-preview {
    padding: 80px 20px;
    background: #ffffff;
}

.service-cards-editorial {
    max-width: 1000px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #2563eb;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 24px;
}

.price span {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
}

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

.features li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 24px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: #f3f4f6;
    color: #1a1a1a;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #e5e7eb;
    border-color: #2563eb;
}

.btn-select.primary {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-select.primary:hover {
    background: #1d4ed8;
}

.form-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    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: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 60px 20px;
    background: #fef3c7;
}

.urgency-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #f59e0b;
}

.urgency-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.urgency-card p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.btn-urgency {
    display: inline-block;
    padding: 14px 32px;
    background: #f59e0b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    color: #e5e7eb;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 16px 20px;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.sticky-content span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 28px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #1d4ed8;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hero-text-center h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .narrow-column h2 {
        font-size: 28px;
    }

    .narrow-column p {
        font-size: 16px;
    }

    .cta-highlight h2 {
        font-size: 28px;
    }

    .price {
        font-size: 32px;
    }

    .footer-container {
        flex-direction: column;
    }

    .sticky-content {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-content {
        flex-direction: column;
    }
}