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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Editorial Style */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.3;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
    color: #2563eb;
}

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

.nav-menu a {
    color: #4b5563;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a202c;
    border-bottom-color: #2563eb;
}

/* Editorial Wrapper - Narrow Centered Content */
.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-narrow {
    width: 100%;
}

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 3rem;
}

.hero-content-narrow {
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4b5563;
    font-family: Georgia, serif;
    font-style: italic;
}

/* Drop Cap - Classic Editorial Touch */
.drop-cap::first-letter {
    font-size: 4rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.2em;
    color: #2563eb;
}

/* Story Sections */
.story-intro,
.story-detail,
.story-section,
.problem-section,
.method-intro,
.benefits-section,
.approach-section,
.intro-section,
.contact-intro {
    margin: 3rem 0;
}

/* Inline CTA Boxes */
.cta-box-inline,
.insight-box,
.urgency-box,
.info-box {
    background-color: #f3f4f6;
    border-left: 4px solid #2563eb;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 2px;
}

.cta-box-inline p,
.insight-box p,
.urgency-box p {
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.7;
}

.insight-box h3,
.urgency-box h3,
.info-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a202c;
}

/* Numbered Content Blocks */
.number-block {
    display: flex;
    gap: 1.5rem;
    margin: 2.5rem 0;
    align-items: flex-start;
}

.big-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.number-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.number-content p {
    color: #4b5563;
}

/* Testimonials - Inline Style */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 3px solid #e5e7eb;
    border-bottom: 3px solid #e5e7eb;
}

.testimonial-inline blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    color: #1a202c;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #6b7280;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Service Cards - Article Style */
.service-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    position: relative;
}

.service-card.featured {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.75rem;
    color: #1a202c;
}

.service-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-card h4 {
    font-size: 1.125rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-price {
    margin: 2rem 0 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
}

/* Buttons - Editorial CTA Style */
.btn-select-service,
.btn-main-cta,
.btn-final-cta,
.btn-sticky,
.btn-submit {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-select-service:hover,
.btn-main-cta:hover,
.btn-final-cta:hover,
.btn-sticky:hover,
.btn-submit:hover {
    background-color: #1e40af;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-select-service {
    width: 100%;
    text-align: center;
}

/* CTA Sections */
.cta-primary,
.cta-about,
.final-cta {
    margin: 4rem 0;
    text-align: center;
}

.cta-box-main,
.cta-box-final {
    background-color: #1e293b;
    color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 4px;
}

.cta-box-main h2,
.cta-box-final h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-box-main p {
    color: #e2e8f0;
    margin-bottom: 2rem;
}

/* Lists */
.benefit-list,
.achievement-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li,
.achievement-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.125rem;
    border-bottom: 1px solid #e5e7eb;
}

.benefit-list li:last-child,
.achievement-list li:last-child {
    border-bottom: none;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.achievement-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Forms - Clean Editorial Style */
.form-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 3px solid #e5e7eb;
}

.main-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a202c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-consent {
    margin: 2rem 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

.form-consent input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Contact Info Blocks */
.contact-info-block {
    margin: 2.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-block:last-child {
    border-bottom: none;
}

.contact-info-block h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #1a202c;
}

.contact-info-block p {
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

/* FAQ Sections */
.faq-item {
    margin: 2.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #1a202c;
}

.faq-item p {
    color: #4b5563;
}

/* Value Blocks */
.value-block {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.value-block:last-child {
    border-bottom: none;
}

.value-block h3 {
    margin-top: 0;
    color: #2563eb;
}

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

.thanks-box {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-box h1 {
    color: #10b981;
    margin-bottom: 1.5rem;
}

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

.thanks-details,
.thanks-info,
.thanks-meanwhile {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.thanks-details h2,
.thanks-info h3,
.thanks-meanwhile h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.next-steps {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.next-steps li {
    margin: 1rem 0;
    font-size: 1.125rem;
}

.thanks-cta {
    margin-top: 3rem;
}

/* Legal Pages */
.legal-page .page-header {
    padding-bottom: 2rem;
    border-bottom: 3px solid #e5e7eb;
}

.legal-date {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content li {
    margin: 0.75rem 0;
}

/* Footer */
.main-footer {
    background-color: #1a202c;
    color: #e5e7eb;
    margin-top: 5rem;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

.footer-section p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #9ca3af;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

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

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

.sticky-text {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-sticky {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 1rem;
    color: #e5e7eb;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #4b5563;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .editorial-wrapper {
        padding: 2rem 1.5rem;
    }

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .number-block {
        flex-direction: column;
        gap: 1rem;
    }

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

    .sticky-content,
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .service-card {
        padding: 1.5rem;
    }

    .cta-box-main,
    .cta-box-final {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .editorial-wrapper {
        padding: 1.5rem 1rem;
    }

    p {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .drop-cap::first-letter {
        font-size: 3rem;
    }
}
