/* EDITORIAL STORY ARCHETYPE - RESET & BASE */

* {
    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: #2c2c2c;
    background-color: #fafafa;
}

/* TYPOGRAPHY - EDITORIAL STYLE */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

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

p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* NARROW CENTERED CONTAINER - EDITORIAL ARCHETYPE */

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

/* HEADER - MINIMAL EDITORIAL NAV */

.editorial-header {
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;
}

.editorial-header .brand {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.main-nav a {
    color: #555;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

/* MAIN EDITORIAL LAYOUT */

.editorial-main {
    background: #ffffff;
    padding: 3rem 0;
}

.story-flow {
    display: flex;
    flex-direction: column;
}

/* HERO - ARTICLE STYLE */

.hero-story {
    padding: 2rem 0 3rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* INLINE IMAGES - EDITORIAL STYLE */

.inline-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 2.5rem 0;
    border-radius: 3px;
}

/* TEXT SECTIONS */

.text-section {
    padding: 2rem 0;
}

.text-section ul,
.text-section ol {
    margin: 1.5rem 0 1.5rem 1.8rem;
}

.text-section li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* INLINE CTA - WITHIN CONTENT */

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #004999;
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #e0e0e0;
    border-color: #ccc;
    text-decoration: none;
}

/* BLOCKQUOTES - EDITORIAL STYLE */

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #0066cc;
    background: #f9f9f9;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
}

blockquote p {
    margin-bottom: 0.5rem;
}

cite {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

.image-quote {
    margin: 3rem 0;
}

/* INSIGHT LISTS */

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

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

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* SERVICES SECTION - CARDS WITHIN EDITORIAL FLOW */

.services-section {
    padding: 3rem 0;
    background: #f7f7f7;
    margin: 3rem -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1rem 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-select-service {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background: #218838;
}

.btn-select-service.selected {
    background: #666;
}

/* TESTIMONIALS */

.testimonial-section {
    padding: 3rem 0;
}

.testimonial {
    background: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
}

/* FORM SECTION - EDITORIAL STYLE */

.form-section {
    padding: 3rem 0;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group input[readonly] {
    background: #f5f5f5;
    color: #666;
}

.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* URGENCY BOX */

.urgency-section {
    padding: 3rem 0;
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.urgency-box h3 {
    margin-top: 0;
    color: #856404;
}

.urgency-box p {
    color: #856404;
}

/* STICKY CTA */

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

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: #ffffff;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #ff5252;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

/* FOOTER */

.site-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-decoration: none;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #999;
}

/* COOKIE BANNER */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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 {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #28a745;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #5a6268;
}

/* PAGE HERO */

.page-hero {
    padding: 2rem 0 3rem;
    border-bottom: 1px solid #e0e0e0;
}

/* CONTACT PAGE */

.contact-info-section {
    padding: 3rem 0;
}

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

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

.contact-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #0066cc;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.process-list,
.document-list {
    margin: 1.5rem 0;
}

/* THANKS PAGE */

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.step-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-left: 4px solid #0066cc;
}

.step-item h3 {
    margin-top: 0;
    color: #0066cc;
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* SERVICES DETAIL PAGE */

.services-detail-section {
    padding: 3rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.service-list li {
    margin-bottom: 0.7rem;
}

.featured-service {
    position: relative;
    border: 2px solid #ffc107;
    background: #fffbf0;
    padding: 2.5rem;
    border-radius: 4px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffc107;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 3px;
    font-family: 'Helvetica Neue', sans-serif;
}

/* FAQ */

.faq-section {
    padding: 3rem 0;
    background: #f7f7f7;
    margin: 3rem -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

/* VALUES */

.values-section {
    padding: 3rem 0;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    color: #0066cc;
}

/* TEAM */

.team-section {
    padding: 3rem 0;
}

/* CTA SECTION */

.cta-section {
    padding: 3rem 0;
    text-align: center;
}

/* COOKIE TABLE */

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #ddd;
}

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

/* RESPONSIVE */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .container-narrow {
        padding: 0 1rem;
    }

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

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

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

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

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

    .services-section {
        margin: 2rem -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-section {
        margin: 2rem -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}
