/* 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: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

a:hover {
    color: #1d4ed8;
}

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.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;
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

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

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

/* Editorial Container - Narrow Content Focus */
.editorial-container {
    background: white;
    padding-bottom: 4rem;
}

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

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: #9ca3af;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Article Sections */
.article-section {
    padding: 3rem 0;
}

.article-section.alt-bg {
    background: #f9fafb;
}

/* Drop Cap */
.dropcap::first-letter {
    font-size: 4rem;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 0.1rem 0.15rem 0 0;
    color: #1a1a1a;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

.image-caption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

/* Testimonial Inline - Editorial Quote Style */
.testimonial-inline {
    border-left: 4px solid #1a1a1a;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
}

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

blockquote {
    border-left: 4px solid #1a1a1a;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
}

/* Zone Cards */
.zone-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.zone-card {
    padding: 1.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.zone-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.zone-card p {
    margin: 0;
    font-size: 1rem;
    color: #4b5563;
}

/* Styled Lists */
.styled-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.styled-list li {
    list-style: disc;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

/* CTAs - Editorial Style */
.cta-inline {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-inline h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.btn-primary, .btn-secondary, .btn-outline, .btn-submit, .btn-final {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #374151;
}

.btn-secondary {
    background: #2563eb;
    color: white;
}

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

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: white;
}

.btn-submit {
    background: #10b981;
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #059669;
}

.btn-final {
    background: #1a1a1a;
    color: white;
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
}

.btn-final:hover {
    background: #374151;
}

/* Service Cards - Editorial Grid */
.services-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.service-card {
    padding: 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    position: relative;
}

.service-card.featured {
    border-color: #1a1a1a;
    background: #fafafa;
}

.badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #1a1a1a;
    color: white;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    padding: 2rem;
    background: white;
    border-left: 4px solid #1a1a1a;
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #374151;
}

.testimonial-card cite {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

/* Forms - Editorial Style */
.editorial-form {
    max-width: 100%;
    margin: 2rem 0;
}

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

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

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

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

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

/* Situation List */
.situation-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.situation-item {
    padding: 1.5rem;
    background: white;
    border-left: 3px solid #1a1a1a;
}

.situation-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.situation-item p {
    margin: 0;
    font-size: 1rem;
    color: #4b5563;
}

/* Need Grid */
.need-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.need-item {
    padding: 1.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.need-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.need-item p {
    margin: 0;
    font-size: 1rem;
}

/* FAQ List */
.faq-list {
    margin: 2rem 0;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.final-cta h2 {
    color: white;
    margin-top: 0;
}

.final-cta p {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

.footer-section p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul a {
    color: #9ca3af;
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section ul a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

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

.sticky-btn {
    background: #1a1a1a;
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.header-intro {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail {
    margin: 3rem 0;
    padding: 2.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    position: relative;
}

.featured-service {
    border-color: #1a1a1a;
    background: #fafafa;
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 2rem;
    background: #10b981;
    color: white;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0.5rem 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

.service-features li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    position: relative;
}

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

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.contact-info, .contact-form-section {
    flex: 1;
}

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

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

.contact-item p {
    margin: 0;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem;
    margin: 2rem 0;
}

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #92400e;
}

.map-placeholder {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.faq-contact {
    margin: 2rem 0;
}

.contact-quick {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-quick p {
    margin-bottom: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-quick p:last-child {
    margin-bottom: 0;
}

.resources-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-link {
    padding: 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    border-color: #1a1a1a;
    transform: translateX(5px);
}

.resource-link h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.resource-link p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
}

.thanks-hero {
    text-align: center;
    padding: 4rem 0 2rem;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.next-steps {
    margin: 3rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.step-time {
    display: inline-block;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-selected {
    background: #f0fdf4;
    border: 2px solid #10b981;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-selected p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.meanwhile-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.meanwhile-card {
    padding: 1.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.meanwhile-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.meanwhile-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.meanwhile-card:last-child p {
    margin-bottom: 0;
}

.card-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2563eb;
}

.final-thanks {
    background: #f9fafb;
    text-align: center;
    padding: 3rem 2rem;
}

.final-thanks h2 {
    margin-top: 0;
}

/* Legal Pages */
.legal-page {
    background: white;
    min-height: 70vh;
}

.legal-date {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-list {
    padding-left: 2rem;
    margin: 1.5rem 0;
}

.legal-list li {
    list-style: disc;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4b5563;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-table thead {
    background: #f3f4f6;
}

.cookie-table th,
.cookie-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4b5563;
}

.legal-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.approach-item {
    padding: 1.75rem;
    background: #f9fafb;
    border-left: 4px solid #1a1a1a;
}

.approach-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.approach-item p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .zone-cards,
    .services-preview,
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .zone-card,
    .service-card,
    .testimonial-card {
        flex: 1;
        min-width: 280px;
    }

    .contact-grid {
        flex-direction: row;
    }

    .need-grid,
    .approach-grid {
        flex-direction: row;
    }

    .need-item,
    .approach-item {
        flex: 1;
    }

    .meanwhile-grid {
        flex-direction: row;
    }

    .meanwhile-card {
        flex: 1;
    }

    .cookie-content {
        flex-wrap: nowrap;
    }

    .sticky-cta {
        display: block;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 2.25rem;
    }

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

    .step {
        flex-direction: row;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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