/* 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: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

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

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

/* Navigation - Minimal Style for Editorial Archetype */
.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
}

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

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

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

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

.cta-sticky-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-sticky-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

/* Hero Section - Editorial Style */
.editorial-hero {
    padding: 4rem 5% 3rem;
    background: #fafafa;
}

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

.editorial-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.editorial-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
}

/* Page Header */
.page-header {
    padding: 4rem 5% 3rem;
    background: #f9fafb;
}

.page-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6b7280;
    font-style: italic;
}

/* Editorial Sections - Narrow Text */
.editorial-section {
    padding: 3rem 5%;
}

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

.editorial-heading {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.editorial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.editorial-list {
    list-style: none;
    margin: 2rem 0;
}

.editorial-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Insight Blocks */
.insight-block {
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    padding: 2rem;
    margin: 2rem 0;
}

.insight-block h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insight-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Inline Images - Editorial Style */
.editorial-visual {
    padding: 3rem 5%;
}

.inline-image-box {
    max-width: 900px;
    margin: 0 auto;
}

.inline-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

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

/* Callout Boxes */
.editorial-callout {
    padding: 3rem 5%;
    background: #fef3c7;
}

.editorial-callout-urgent {
    padding: 3rem 5%;
    background: #fee2e2;
}

.callout-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.callout-box h3 {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.callout-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

.callout-box.urgent {
    background: transparent;
}

.stat-large {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Inline CTA */
.editorial-cta-inline {
    padding: 3rem 5%;
    background: #eff6ff;
}

.cta-inline-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.cta-inline-text {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-inline-btn {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-inline-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Testimonials */
.testimonial-editorial {
    padding: 4rem 5%;
    background: #f9fafb;
}

.testimonial-quote {
    max-width: 680px;
    margin: 0 auto;
    border-left: 4px solid #10b981;
    padding-left: 2rem;
}

.testimonial-quote p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* Pricing Section */
.services-pricing {
    padding: 4rem 5%;
    background: #ffffff;
}

.pricing-intro {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
    border-color: #2563eb;
    border-width: 3px;
    background: #eff6ff;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #2563eb;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-desc {
    font-size: 1rem;
    color: #6b7280;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-details {
    margin: 2rem 0;
}

.service-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.price-features li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-for,
.service-time {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-cta {
    margin-top: 2rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #000000;
    transform: translateY(-2px);
}

.btn-select-service.primary {
    background: #2563eb;
}

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

/* Form Section */
.editorial-form-section {
    padding: 4rem 5%;
    background: #f9fafb;
}

.form-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    text-align: center;
}

.form-subtext {
    font-size: 1.05rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    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: #2563eb;
}

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

.btn-submit-form {
    width: 100%;
    padding: 1.1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

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

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Final CTA */
.editorial-final-cta {
    padding: 4rem 5%;
    background: #1a1a1a;
}

.final-cta-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-box h3 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.btn-final-cta {
    display: inline-block;
    background: #10b981;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Contact Page */
.contact-section {
    padding: 3rem 5%;
    background: #ffffff;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.contact-directions {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 12px;
}

.contact-directions h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.inline-link {
    color: #2563eb;
    text-decoration: underline;
}

.inline-link:hover {
    color: #1d4ed8;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #4b5563;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 5%;
    background: #f9fafb;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-list {
    list-style: none;
}

.thanks-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.selected-service-box {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
}

.selected-service-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-thanks-secondary {
    background: #f3f4f6;
    color: #1a1a1a;
}

.btn-thanks-secondary:hover {
    background: #e5e7eb;
}

/* Legal Pages */
.legal-section {
    padding: 3rem 5%;
    background: #ffffff;
}

.legal-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-list {
    list-style: disc;
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookies-table th {
    background: #f9fafb;
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 3rem 5% 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: #9ca3af;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #6b7280;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

    .editorial-title {
        font-size: 1.8rem;
    }

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

    .editorial-heading {
        font-size: 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .cta-sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .price-card {
        padding: 2rem;
    }

    .pricing-cards {
        gap: 1.5rem;
    }
}

@media (min-width: 769px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

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

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

    .contact-info,
    .contact-directions {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .price-card {
        flex: 1 1 calc(50% - 1rem);
    }
}
