/* ========================================
   RESET & 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.7;
    color: #2c3e50;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5f8f;
}

/* ========================================
   EDITORIAL LAYOUT TYPOGRAPHY
   ======================================== */

.editorial-layout h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.editorial-layout h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.editorial-layout h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 2rem 0 0.8rem;
    color: #333;
}

.editorial-layout h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 1.5rem 0 0.6rem;
    color: #333;
}

.editorial-layout p {
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
}

.editorial-layout ul,
.editorial-layout ol {
    margin: 1.4rem 0 1.4rem 1.8rem;
}

.editorial-layout li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

/* ========================================
   NAVIGATION - MINIMAL STYLE
   ======================================== */

.minimal-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: #333;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2980b9;
}

/* ========================================
   MAIN CONTENT - EDITORIAL NARROW COLUMN
   ======================================== */

.main-content {
    background-color: #fff;
}

.text-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.text-column-centered {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

/* ========================================
   HERO - EDITORIAL STYLE
   ======================================== */

.hero-editorial {
    padding: 4rem 0 3rem;
}

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

.hero-image-inline {
    margin: 2rem 0;
}

.hero-image-inline img {
    width: 100%;
    border-radius: 4px;
}

/* ========================================
   SECTIONS - NARRATIVE & STORY BLOCKS
   ======================================== */

.narrative-section,
.problem-amplification,
.story-section,
.trust-building,
.reveal-section,
.urgency-section,
.final-trust,
.form-section,
.final-cta {
    background-color: #fff;
}

.narrative-section:nth-child(even),
.story-section:nth-child(even) {
    background-color: #f9f9f9;
}

.section-image {
    margin: 2.5rem 0;
}

.section-image img {
    width: 100%;
    border-radius: 4px;
}

/* ========================================
   QUOTES & TESTIMONIALS
   ======================================== */

.insight-quote,
.testimonial {
    border-left: 4px solid #2980b9;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background-color: #f8f9fa;
    font-style: italic;
}

.insight-quote p,
.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.8rem;
}

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

blockquote {
    margin: 0;
}

/* ========================================
   INSIGHT BLOCKS
   ======================================== */

.insight-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #f4f7f9;
    border-radius: 4px;
}

.insight-block h3 {
    margin-top: 0;
    color: #1a1a1a;
}

/* ========================================
   CTA ELEMENTS - VARIED STYLES
   ======================================== */

.cta-inline {
    margin: 2rem 0;
}

.btn-text-link {
    font-size: 1.1rem;
    color: #2980b9;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease;
}

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

.cta-box-centered {
    background-color: #ecf5fb;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 6px;
    text-align: center;
}

.cta-box-urgent {
    background: linear-gradient(135deg, #2c5f8d 0%, #2980b9 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 6px;
    text-align: center;
}

.cta-box-urgent h4 {
    color: #fff;
    margin-top: 0;
}

.cta-box-urgent p {
    color: #f0f0f0;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-select-service,
.btn-submit,
.btn-large,
.btn-text {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #2980b9;
    color: #fff;
    margin: 0.5rem 0.5rem 0.5rem 0;
}

.btn-primary:hover {
    background-color: #1a5f8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
    margin: 0.5rem 0.5rem 0.5rem 0;
}

.btn-secondary:hover {
    background-color: #2980b9;
    color: #fff;
}

.btn-select-service {
    background-color: #27ae60;
    color: #fff;
}

.btn-select-service:hover {
    background-color: #1e8449;
}

.btn-submit {
    background-color: #2980b9;
    color: #fff;
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

.btn-submit:hover {
    background-color: #1a5f8f;
}

.btn-large {
    background-color: #2980b9;
    color: #fff;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.btn-large:hover {
    background-color: #1a5f8f;
}

.btn-text {
    background-color: transparent;
    color: #2980b9;
    padding: 0.7rem 1.5rem;
}

.btn-text:hover {
    background-color: #f0f0f0;
}

/* ========================================
   SERVICE CARDS - EDITORIAL STYLE
   ======================================== */

.service-card-editorial {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    margin: 2.5rem 0;
    background-color: #fff;
    position: relative;
}

.service-card-editorial.featured {
    border: 2px solid #2980b9;
    box-shadow: 0 8px 24px rgba(41, 128, 185, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f39c12;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-header {
    margin-bottom: 1.5rem;
}

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

.service-subtitle {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

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

.service-content li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2980b9;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ========================================
   GUARANTEE BOX
   ======================================== */

.guarantee-box {
    background-color: #fff8e1;
    border: 2px solid #ffc107;
    border-radius: 6px;
    padding: 2rem;
    margin: 3rem 0;
}

.guarantee-box h4 {
    margin-top: 0;
    color: #f57c00;
}

/* ========================================
   RESULTS & STATS
   ======================================== */

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

.results-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.05rem;
}

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

.highlight-stat {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.cost-calculator {
    background-color: #fef5f5;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.cost-calculator p {
    margin: 0.8rem 0;
    font-size: 1.05rem;
}

.cost-calculator strong {
    color: #c0392b;
}

/* ========================================
   FORMS
   ======================================== */

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

/* ========================================
   PAGES - ABOUT, SERVICES, CONTACT
   ======================================== */

.page-header {
    background-color: #f9f9f9;
    padding: 3rem 0 2rem;
}

.principle-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    border-left: 4px solid #2980b9;
    background-color: #f8f9fa;
}

.principle-block h3 {
    margin-top: 0;
}

.team-expertise {
    list-style: none;
    margin: 2rem 0;
}

.team-expertise li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* ========================================
   SERVICES PAGE - DETAILED CARDS
   ======================================== */

.services-intro {
    background-color: #f9f9f9;
    padding: 2rem 0;
}

.service-full-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
    background-color: #fff;
    position: relative;
}

.service-full-card.featured-service {
    border: 3px solid #2980b9;
    box-shadow: 0 12px 32px rgba(41, 128, 185, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background-color: #f39c12;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-header-full {
    margin-bottom: 1.5rem;
}

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

.service-meta {
    display: flex;
    gap: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-meta span {
    background-color: #ecf5fb;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #2980b9;
    font-weight: 600;
}

.service-description {
    margin: 1.5rem 0;
}

.service-includes h3,
.service-ideal-for h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2980b9;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2.5rem 0;
}

.comparison-item {
    flex: 1 1 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.comparison-item h3 {
    margin-top: 0;
    color: #2980b9;
}

.comparison-item ul {
    margin-top: 1rem;
}

.guarantee-box-large {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 3px solid #ffc107;
    border-radius: 8px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.guarantee-box-large p {
    font-size: 1.15rem;
    margin: 1rem 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-top: 0;
    color: #2980b9;
}

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

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

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

/* ========================================
   THANKS PAGE
   ======================================== */

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

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

.confirmation-box {
    background-color: #ecf5fb;
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin: 1.5rem 0;
    padding-left: 3.5rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2980b9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.steps-list strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.steps-list p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-section {
    background-color: #fff;
}

.legal-section h2 {
    margin-top: 3rem;
    color: #2980b9;
}

.legal-section h3 {
    margin-top: 2rem;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-brand h3 {
    color: #fff;
    margin: 0 0 0.8rem;
    font-size: 1.4rem;
}

.footer-brand p {
    color: #999;
    font-size: 0.95rem;
}

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

.footer-column h4 {
    color: #fff;
    margin: 0 0 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #999;
    margin: 0.6rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* ========================================
   STICKY CTA
   ======================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2980b9;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.btn-sticky {
    display: inline-block;
    background-color: #fff;
    color: #2980b9;
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

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

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

/* ========================================
   RESPONSIVE - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .editorial-layout h1 {
        font-size: 1.8rem;
    }

    .editorial-layout h2 {
        font-size: 1.5rem;
    }

    .editorial-layout h3 {
        font-size: 1.2rem;
    }

    .service-pricing,
    .service-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .service-pricing .btn-select-service,
    .service-footer .btn-primary {
        width: 100%;
    }

    .stats-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (min-width: 769px) and (max-width: 1024px) {
    .text-column,
    .text-column-centered {
        max-width: 720px;
    }
}

@media (min-width: 1025px) {
    .sticky-cta.visible {
        display: block;
    }
}