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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation - Minimal Top */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Editorial Content Container */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial Style */
.hero-editorial {
    padding: 6rem 0 4rem;
    background-color: #f9f9f9;
}

.hero-text-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

/* Story Sections */
.story-section,
.insight-block,
.problem-section,
.solution-intro,
.trust-section,
.benefits-reveal,
.social-proof,
.urgency-section,
.services-section,
.form-section,
.final-cta {
    padding: 4rem 0;
}

.story-section p,
.insight-block p,
.problem-section p,
.solution-intro p,
.trust-section p,
.benefits-reveal p,
.social-proof p,
.urgency-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-section h2,
.insight-block h2,
.problem-section h2,
.solution-intro h2,
.trust-section h2,
.benefits-reveal h2,
.social-proof h2,
.urgency-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.story-section h2:first-child,
.insight-block h2:first-child,
.problem-section h2:first-child {
    margin-top: 0;
}

/* Inline Images */
.inline-image {
    width: 100%;
    margin: 3rem 0;
    border-radius: 4px;
}

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

.styled-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.styled-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

/* Stats Inline */
.stats-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e74c3c;
}

.stat-label {
    font-size: 1rem;
    color: #555;
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #f0f4f8;
    border-left: 4px solid #3498db;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

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

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary-large {
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
}

.btn-primary-large:hover {
    background-color: #c0392b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.3);
}

/* Benefit Blocks */
.benefit-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.benefit-block h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-block p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Service Cards Editorial */
.service-card-editorial {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card-editorial.featured {
    border-color: #3498db;
    background-color: #f8fbff;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card-editorial h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-editorial > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #2c3e50;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.service-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Form Styles */
.contact-form {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #e8f4f8;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #c0392b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

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

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

.footer-col ul li a {
    color: #bbb;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

/* Page Headers */
.page-header {
    padding: 4rem 0 3rem;
    background-color: #f9f9f9;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
}

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

.legal-page ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

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

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

/* Contact Page */
.contact-info-section {
    padding: 3rem 0;
}

.contact-block {
    margin: 3rem 0;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #555;
}

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

.map-placeholder {
    margin: 2rem 0;
}

/* About Page */
.mission-section,
.values-section,
.approach-section,
.team-section {
    padding: 3rem 0;
}

.value-block {
    margin: 2.5rem 0;
}

.value-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-block p {
    font-size: 1.05rem;
    color: #555;
}

/* Services Overview */
.services-overview {
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.services-list {
    padding: 3rem 0;
}

.guarantee-section {
    padding: 4rem 0;
    background-color: #f0f8ff;
}

.guarantee-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thanks-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
}

.thanks-details h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.step-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.step-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-block p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #555;
}

.selected-service-display {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 4px;
}

.thanks-cta {
    margin: 3rem 0;
}

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

.thanks-note {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    text-align: left;
}

.thanks-note p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.thanks-note p:last-child {
    margin-bottom: 0;
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #f9f9f9;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .stats-inline {
        flex-direction: row;
        justify-content: space-around;
    }

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

    .footer-col {
        flex: 1;
    }

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

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

    .thanks-buttons {
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    body {
        font-size: 19px;
    }

    .hero-editorial h1 {
        font-size: 3.5rem;
    }

    .sticky-cta {
        display: block;
    }
}