/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
    font-size: 17px;
}

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

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

a:hover {
    color: #0d3a6b;
}

/* Editorial Navigation - Floating Style */
.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

/* Editorial Flow Container */
.editorial-flow {
    max-width: 100%;
    background: #fff;
}

/* Narrow Column - Core Editorial Style */
.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 5%;
}

@media (max-width: 768px) {
    .narrow-column {
        padding: 2rem 6%;
    }
}

/* Story Hero */
.story-hero {
    position: relative;
    margin-bottom: 4rem;
}

.hero-visual img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 3rem 5%;
    color: #fff;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-visual img {
        height: 400px;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-text-overlay {
        padding: 2rem 6%;
    }
}

/* Typography - Editorial Style */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.4rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    letter-spacing: -0.02em;
}

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

p {
    margin-bottom: 1.3rem;
}

.opening-graf {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #3a3a3a;
    font-weight: 400;
}

em {
    font-style: italic;
    font-weight: 500;
}

/* Story Sections */
.story-intro {
    padding-top: 2rem;
}

.story-image-break {
    margin: 4rem 0;
}

.story-image-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .story-image-break img {
        height: 300px;
    }
}

/* Offset Layouts - Asymmetric Editorial */
.offset-left, .offset-right {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
}

.offset-left {
    flex-direction: row;
}

.offset-right {
    flex-direction: row-reverse;
}

.insight-visual, .trust-visual {
    flex: 1;
}

.insight-visual img, .trust-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.insight-content, .trust-content {
    flex: 1;
}

@media (max-width: 968px) {
    .offset-left, .offset-right {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-visual img, .trust-visual img {
        height: 350px;
    }
}

/* Problem Amplification */
.problem-amplification {
    background: #f9f9f9;
    border-left: 4px solid #1a5490;
    padding: 3rem 5% 3rem 6%;
    margin: 4rem auto;
    max-width: 680px;
}

/* Emphasis Quote */
.emphasis-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 3px solid #ccc;
}

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

/* Method Steps */
.method-steps {
    margin: 2rem 0;
}

.step {
    margin-bottom: 2.5rem;
}

.step h3 {
    margin-top: 0;
    color: #1a5490;
}

/* Testimonials Inline */
.testimonial-inline {
    background: #f5f5f5;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 3px;
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.testimonial-inline cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.benefit-list li:last-child {
    border-bottom: none;
}

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

.cta-text-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a5490;
}

.cta-text-link:hover {
    color: #0d3a6b;
}

.cta-button-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #1a5490;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.2s ease;
}

.cta-button-inline:hover {
    background: #0d3a6b;
    color: #fff;
}

/* Services Showcase - Card Style within Editorial */
.services-showcase {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-card.featured {
    position: relative;
    border: 2px solid #1a5490;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1a5490;
    color: #fff;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 3px;
    z-index: 10;
}

.service-image {
    flex: 0 0 320px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    margin-top: 0;
    font-size: 1.6rem;
}

.service-details p {
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.duration {
    font-size: 0.9rem;
    color: #666;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
}

.service-select {
    padding: 0.8rem 1.5rem;
    background: #1a5490;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.service-select:hover {
    background: #0d3a6b;
}

@media (max-width: 868px) {
    .service-card {
        flex-direction: column;
        gap: 0;
    }

    .service-image {
        flex: none;
        height: 220px;
    }

    .service-details {
        padding: 1.5rem;
    }
}

/* Form Section */
.form-section {
    background: #f9f9f9;
    padding: 4rem 5%;
    margin: 4rem auto;
}

.registration-form {
    max-width: 100%;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: #1a5490;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.form-submit:hover {
    background: #0d3a6b;
}

/* Urgency Element */
.urgency-element {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.urgency-element strong {
    color: #ff6f00;
}

/* Closing CTA Block */
.closing-cta-block {
    background: #1a1a1a;
    color: #fff;
    padding: 5rem 5%;
    text-align: center;
    margin-top: 4rem;
}

.closing-cta-content h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.closing-cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #1a1a1a;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: background 0.2s ease;
}

.cta-button-large:hover {
    background: #e8e8e8;
    color: #1a1a1a;
}

/* Footer */
.site-footer {
    background: #2a2a2a;
    color: #ccc;
    padding: 3rem 5%;
}

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

.footer-brand {
    flex: 1;
}

.footer-brand strong {
    color: #fff;
    font-size: 1.2rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background: #1a5490;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.sticky-cta-button:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    color: #fff;
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 200;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-accept, .cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

/* Page-specific Styles */
.page-header {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.header-intro {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-top: 1rem;
}

.legal-date {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Services Detailed Page */
.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-visual {
    flex: 0 0 400px;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.service-detail-content {
    flex: 1;
}

.service-price-tag {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
    margin: 0.5rem 0 1rem;
}

.service-duration {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.6rem;
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #1a5490;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.2s ease;
}

.service-cta:hover {
    background: #0d3a6b;
    color: #fff;
}

.featured-service {
    position: relative;
}

.featured-badge-large {
    display: inline-block;
    background: #1a5490;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.primary-cta {
    background: #ff6f00;
}

.primary-cta:hover {
    background: #e65c00;
}

@media (max-width: 968px) {
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-visual {
        flex: none;
        height: 300px;
    }
}

/* Contact Page */
.contact-details {
    margin: 2rem 0;
}

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

.contact-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #1a5490;
}

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

.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.15rem;
    color: #1a1a1a;
}

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

.thanks-hero {
    text-align: center;
    padding: 4rem 5%;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: #fff;
    font-size: 3rem;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #666;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background: #1a5490;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-top: 0;
}

.service-confirmation {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #1a5490;
}

.selected-service-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a5490;
}

.confirmation-note {
    font-size: 0.95rem;
    color: #666;
}

.final-message {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
}

.final-signature {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* About Page Specific */
.approach-points {
    margin: 2rem 0;
}

.approach-point {
    margin-bottom: 2rem;
}

.approach-point h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

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

.results-list li {
    padding: 0.8rem 0 0.8rem 1.5rem;
    position: relative;
}

.results-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.cta-block-about {
    text-align: center;
    margin-top: 3rem;
}

.comparison-help {
    background: #f9f9f9;
    padding: 3rem 5%;
    margin-top: 4rem;
}

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