/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1a365d;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* NAVIGATION */
.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* EDITORIAL CONTAINER */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* HERO */
.article-hero {
    margin-bottom: 3.5rem;
}

.hero-date {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #4a5568;
    font-weight: 400;
    margin-bottom: 2rem;
}

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

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

/* ARTICLE SECTIONS */
.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.article-section h3 {
    font-size: 1.35rem;
    line-height: 1.4;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.article-section h4 {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.article-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1.25rem;
}

.article-section ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.article-section li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

/* INLINE IMAGE */
.article-image-inline {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
}

.image-caption {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

/* INLINE CTA */
.inline-cta {
    margin: 2rem 0;
    padding: 1.25rem 0;
}

.cta-link {
    font-size: 1.125rem;
    color: #2c5282;
    font-weight: 600;
    border-bottom: 2px solid #2c5282;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.cta-link:hover {
    color: #1a365d;
    border-bottom-color: #1a365d;
}

.cta-link-secondary {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
    border-bottom: 1px solid #cbd5e0;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.cta-link-secondary:hover {
    color: #2d3748;
    border-bottom-color: #4a5568;
}

/* HIGHLIGHT BOX */
.highlight-section {
    background: #f7fafc;
    border-left: 4px solid #2c5282;
    padding: 2rem;
    margin: 3rem -1rem;
    border-radius: 4px;
}

.highlight-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: #1a1a1a;
}

.highlight-box p {
    margin-bottom: 0;
}

/* REASONS LIST */
.reasons-list {
    margin-top: 2rem;
}

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

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

.reason-item p {
    color: #4a5568;
}

/* TESTIMONIAL */
.testimonial-inline {
    background: #f7fafc;
    padding: 2rem;
    margin: 3rem -1rem;
    border-radius: 6px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.125rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #718096;
    font-style: normal;
    font-weight: 500;
}

/* SERVICES GRID */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.featured-service {
    border: 2px solid #2c5282;
    background: #f7fafc;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 1.75rem;
    background: #2c5282;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: 0.875rem;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 1.25rem;
}

.btn-select-service {
    background: #2c5282;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
}

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

/* SERVICES DETAILED */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.service-detailed {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-detailed.featured {
    border: 2px solid #2c5282;
}

.service-header {
    background: #f7fafc;
    padding: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5282;
}

.service-body {
    padding: 1.75rem;
}

.service-body p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.service-body h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.875rem;
}

.service-body ul {
    margin-bottom: 1.75rem;
}

.service-body li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.625rem;
}

/* FORM */
.editorial-form {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

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

.btn-submit {
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.0625rem;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: #1a365d;
    transform: translateY(-1px);
}

/* FINAL CTA */
.final-cta-section {
    margin: 4rem 0;
}

.cta-box {
    background: #f7fafc;
    border: 2px solid #2c5282;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.75rem;
}

.btn-primary-large {
    display: inline-block;
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.2s ease;
}

.btn-primary-large:hover {
    background: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c5282;
    border: 2px solid #2c5282;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #f7fafc;
}

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c5282;
    padding: 1rem;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

.sticky-cta-btn {
    background: #ffffff;
    color: #2c5282;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.sticky-cta-btn:hover {
    background: #f7fafc;
    transform: translateY(-1px);
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #e2e8f0;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

.footer-column p {
    font-size: 0.95rem;
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-column li {
    margin-bottom: 0.625rem;
}

.footer-column a {
    color: #cbd5e0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-cookie {
    background: #2c5282;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1a365d;
}

.btn-cookie-alt {
    background: transparent;
    color: #cbd5e0;
    border: 1px solid #4a5568;
}

.btn-cookie-alt:hover {
    background: #2d3748;
    color: #ffffff;
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

.contact-item p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
}

/* THANKS PAGE */
.thanks-container {
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-service {
    font-size: 1rem;
    color: #2c5282;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #1a365d;
    transform: translateY(-1px);
}

/* LEGAL PAGE */
.legal-page h2 {
    margin-top: 2.5rem;
}

.legal-page h3 {
    margin-top: 1.75rem;
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .editorial-container {
        padding: 4rem 2rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

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

    .contact-item {
        flex: 1;
    }

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

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

    .sticky-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        min-width: calc(33.333% - 1.35rem);
    }
}