/* 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.75;
    color: #2a2a2a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

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

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

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

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

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

strong {
    font-weight: 600;
    color: #1a1a1a;
}

em {
    font-style: italic;
}

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

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

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

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.text-block-narrow {
    max-width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.article-hero {
    margin-bottom: 4rem;
}

.hero-text-narrow {
    margin-bottom: 3rem;
}

.overline {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.65;
    color: #4a4a4a;
    font-weight: 400;
}

.hero-image {
    margin: 2.5rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
}

/* Story Sections */
.story-section {
    margin: 4rem 0;
}

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

/* Images in Content */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
}

.inline-image-full {
    margin: 3rem -1.5rem;
    border-radius: 0;
    overflow: hidden;
}

.inline-image-full img {
    width: 100%;
}

.with-image-left,
.with-image-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Callout Boxes */
.callout-box {
    background: #f8f8f8;
    border-left: 4px solid #1a5490;
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.callout-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.callout-source {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-inline {
    background: #fafafa;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 6px;
    border: 1px solid #ececec;
}

.testimonial-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: #666;
}

/* CTAs */
.inline-cta-soft {
    text-align: center;
    margin: 2.5rem 0;
}

.text-link-arrow {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.05rem;
    color: #1a5490;
    font-weight: 500;
    transition: transform 0.2s ease;
    display: inline-block;
}

.text-link-arrow:hover {
    transform: translateX(5px);
}

.cta-section-block {
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
    padding: 3.5rem 2.5rem;
    margin: 4rem -1.5rem;
    text-align: center;
    color: #ffffff;
    border-radius: 0;
}

.cta-block-inner h3 {
    color: #ffffff;
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.cta-block-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.text-link-large {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.15rem;
    color: #1a5490;
    font-weight: 600;
    transition: color 0.2s ease;
}

.urgency-block {
    background: #fff8e1;
    border: 1px solid #ffd54f;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.urgency-block p {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: #7f6003;
}

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary {
    display: inline-block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary,
.btn-primary-large {
    background: #1a5490;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 84, 144, 0.3);
}

.btn-primary-large {
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
}

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

.btn-secondary:hover {
    background: #1a5490;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Services Preview Cards */
.services-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card-mini {
    background: #fafafa;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    position: relative;
}

.service-card-mini.highlighted {
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
    color: #ffffff;
    border: none;
}

.service-card-mini.highlighted h4,
.service-card-mini.highlighted p,
.service-card-mini.highlighted .price-reveal {
    color: #ffffff;
}

.service-card-mini h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.price-reveal {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.price-reveal strong {
    font-size: 1.35rem;
}

/* Services Comparison */
.services-comparison {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-card-full {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
}

.service-card-full.featured {
    border-color: #1a5490;
    box-shadow: 0 10px 40px rgba(26, 84, 144, 0.15);
}

.badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a5490;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.service-header h2 {
    margin: 0 0 0.5rem 0;
}

.service-tagline {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.service-price {
    text-align: center;
    margin-bottom: 2.5rem;
}

.price-amount {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a5490;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-period {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: #888;
}

.service-features h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features ul li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.service-features p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: #666;
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

/* Additional Services */
.additional-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.add-service-item {
    background: #fafafa;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.add-service-item h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
}

.add-service-item p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.add-service-price {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 0;
}

.add-service-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Lists */
.styled-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.styled-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.styled-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #1a5490;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Forms */
.form-container {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    margin: 3rem 0;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.form-checkbox label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    color: #4a4a4a;
    cursor: pointer;
}

.form-checkbox label a {
    text-decoration: underline;
}

/* Contact Info */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-item p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Legal Text */
.legal-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
}

.legal-text h3 {
    font-size: 1.15rem;
    margin-top: 2rem;
}

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

.legal-text ul li {
    margin-bottom: 0.75rem;
}

/* Page Header */
.page-header {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

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

/* Footer */
.footer-editorial {
    background: #1a1a1a;
    color: #ffffff;
    margin-top: 6rem;
    padding: 3rem 1.5rem 2rem;
}

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

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

.footer-brand strong {
    font-size: 1.25rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
}

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

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

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

.footer-note {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-note p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-cookie-accept {
    background: #1a5490;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #0d3a6b;
}

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

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

/* Sticky CTA */
.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
    padding: 1.25rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 900;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.final-cta-sticky.visible {
    transform: translateY(0);
}

.final-cta-sticky .btn-primary {
    background: #ffffff;
    color: #1a5490;
}

.final-cta-sticky .btn-primary:hover {
    background: #f0f0f0;
}

/* Animations */
.fade-in-view {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (min-width: 768px) {
    .editorial-content {
        padding: 5rem 2rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .with-image-left,
    .with-image-right {
        flex-direction: row;
        align-items: center;
    }

    .with-image-left .text-block-narrow,
    .with-image-right .text-block-narrow {
        flex: 1;
    }

    .with-image-left .inline-image,
    .with-image-right .inline-image {
        flex: 0 0 40%;
    }

    .with-image-right {
        flex-direction: row-reverse;
    }

    .inline-image-full {
        margin: 4rem -2rem;
    }

    .services-preview {
        flex-direction: row;
    }

    .service-card-mini {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

@media (min-width: 1024px) {
    .editorial-content {
        max-width: 800px;
    }

    .inline-image-full {
        margin: 4rem calc((100vw - 800px) / -2);
    }

    .cta-section-block {
        margin-left: calc((100vw - 800px) / -2);
        margin-right: calc((100vw - 800px) / -2);
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

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

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

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .callout-box {
        padding: 1.5rem;
    }

    .testimonial-inline {
        padding: 1.75rem 1.25rem;
    }

    .cta-section-block {
        padding: 2.5rem 1.5rem;
    }

    .form-container {
        padding: 1.75rem;
    }

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

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