/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1e40af;
}

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

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

/* Navigation */
.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

/* Editorial Container */
.editorial-container {
    max-width: 100%;
}

/* Hero Editorial */
.hero-editorial {
    padding: 3rem 0;
    background: #f9fafb;
}

.hero-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 1rem;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    margin-top: 2rem;
    border-radius: 4px;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #374151;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #374151;
}

.section-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 4px;
}

blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.125rem;
    font-style: italic;
    color: #1f2937;
}

/* Background Variations */
.bg-tint {
    background: #f9fafb;
}

.bg-dark {
    background: #1f2937;
    color: #f3f4f6;
}

.bg-dark h2,
.bg-dark h3 {
    color: #ffffff;
}

.bg-dark p,
.bg-dark li {
    color: #e5e7eb;
}

.bg-accent {
    background: #eff6ff;
}

/* Inline Elements */
.inline-cta {
    margin: 2rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.125rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #1e40af;
}

.cta-link-alt {
    display: inline-block;
    margin-top: 1rem;
    color: #2563eb;
    font-weight: 500;
}

.cta-button-inline {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button-inline:hover {
    background: #1e40af;
    color: #ffffff;
}

.cta-button-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1f2937;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background 0.3s ease;
}

.cta-button-large:hover {
    background: #111827;
    color: #ffffff;
}

.final-cta {
    text-align: center;
    margin: 3rem 0 2rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.process-list {
    list-style: none;
    padding: 0;
    counter-reset: process;
}

.process-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
    counter-increment: process;
}

.process-list li:before {
    content: counter(process) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2563eb;
}

/* Insight Box */
.insight-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.insight-box h3 {
    margin-top: 0;
    color: #92400e;
}

.insight-box p {
    margin-bottom: 0;
    color: #78350f;
}

/* Testimonial */
.testimonial-inline {
    background: #f3f4f6;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #1f2937;
}

.testimonial-author {
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0;
}

/* Service Preview */
.service-preview {
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.service-preview h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.service-preview p {
    margin-bottom: 0;
}

/* Service Detail */
.service-detail {
    margin: 3rem 0;
}

.service-detail h3 {
    margin-top: 0;
}

.service-detail ul {
    margin: 1.5rem 0;
}

/* Pricing */
.pricing-card {
    background: #ffffff;
    border: 2px solid #2563eb;
    border-radius: 6px;
    padding: 2rem;
    margin: 2rem 0;
}

.pricing-card h3 {
    margin-top: 0;
    color: #1f2937;
}

.pricing-card p {
    color: #4b5563;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0 1rem;
}

.price-large {
    font-size: 2.25rem;
    font-weight: 800;
    color: #2563eb;
    margin: 1.5rem 0;
}

.pricing-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 2rem;
}

.select-service {
    width: 100%;
    padding: 0.875rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #1e40af;
}

/* Contact Form */
.contact-form {
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    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: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1e40af;
}

/* Contact Info */
.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    background: #f9fafb;
}

.page-lead {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.meta-info {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.thanks-details {
    text-align: left;
    margin: 2rem 0;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-service {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-service h3 {
    margin-top: 0;
    color: #1e40af;
}

.thanks-service p {
    margin-bottom: 0;
    font-weight: 600;
    color: #1f2937;
}

.thanks-info {
    margin: 2rem 0;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 3rem 0 1rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(37, 99, 235, 0.95);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.sticky-cta-button {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 0.5rem 1rem;
}

.sticky-cta-button:hover {
    color: #dbeafe;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        border-top: 1px solid #e5e7eb;
        display: none;
    }

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

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f3f4f6;
    }

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

    .hero-lead {
        font-size: 1.125rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.25rem;
    }

    .cookie-content {
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .thanks-content h1 {
        font-size: 1.875rem;
    }

    .thanks-cta {
        flex-direction: column;
    }

    .sticky-cta {
        padding: 0.75rem;
    }

    .sticky-cta-button {
        font-size: 0.95rem;
    }
}