/* Reset and Base Styles */
* {
    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', 'Arial', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

/* Navigation */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Editorial Layout */
.text-flow-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.hero-editorial-content {
    margin-top: 2rem;
}

.hero-text-narrow h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.inline-image::after {
    content: attr(alt);
}

/* Section Text Flow */
.section-text-flow {
    padding: 5rem 2rem;
}

.section-text-flow h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.section-text-flow ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-text-flow li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.cta-inline {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 2px;
    transition: transform 0.2s;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.cta-inline-strong {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-inline-strong:hover {
    background-color: #5568d3;
}

/* Insight Section */
.section-insight {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.insight-container {
    max-width: 880px;
    margin: 0 auto;
}

.insight-box {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin-bottom: 2rem;
}

.insight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.insight-explanation {
    padding: 0 1rem;
}

/* Trust Section */
.section-trust {
    padding: 5rem 2rem;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #667eea;
}

/* Testimonials */
.section-testimonials {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.testimonials-flow {
    max-width: 780px;
    margin: 0 auto;
}

blockquote {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 3px solid #667eea;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

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

/* Benefits List */
.benefits-list {
    margin-left: 0;
    margin-top: 2rem;
}

.benefits-list li {
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.2rem;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Services Section */
.section-services {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    color: #4a4a4a;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid #667eea;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #667eea;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin: 1rem 0 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #5568d3;
}

/* Urgency Section */
.section-urgency {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: white;
}

.urgency-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Form Section */
.section-form {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.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,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #5568d3;
}

/* Final CTA */
.section-final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: white;
    color: #667eea;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-cta-large:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d0d0d0;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #667eea;
    color: white;
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-content span {
    font-size: 1.05rem;
    font-weight: 500;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background-color: white;
    color: #667eea;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 1.5rem 2rem;
    z-index: 9999;
    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: 2rem;
}

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

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: #667eea;
    color: white;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

/* About Page */
.about-hero {
    padding: 8rem 2rem 4rem;
    background-color: #fafafa;
}

.section-team {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Services Page */
.services-hero {
    padding: 8rem 2rem 4rem;
    background-color: #fafafa;
}

.section-services-detailed {
    padding: 4rem 2rem;
}

.services-detailed-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-detailed {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.featured-service {
    border: 2px solid #667eea;
}

.service-header {
    background-color: #fafafa;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.badge-large {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background-color: #667eea;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header h2 {
    margin: 0;
    font-size: 2rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
}

.service-body {
    padding: 2.5rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.service-body li {
    list-style: disc;
    margin-bottom: 0.7rem;
}

.btn-service {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #667eea;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-service:hover {
    background-color: #5568d3;
}

.section-comparison {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.comparison-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

/* Contact Page */
.contact-hero {
    padding: 8rem 2rem 4rem;
    background-color: #fafafa;
}

.section-contact-info {
    padding: 4rem 2rem;
}

.contact-info-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #667eea;
    text-decoration: underline;
}

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

/* Thanks Page */
.thanks-section {
    padding: 8rem 2rem 4rem;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-container h1 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.selected-service-display {
    background-color: #f0f4ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service {
    margin: 0;
    font-size: 1.1rem;
}

.thanks-info {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thanks-steps {
    margin-left: 1.5rem;
}

.thanks-steps li {
    list-style: decimal;
    margin-bottom: 1rem;
}

.thanks-next {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-next ul {
    margin-left: 1.5rem;
}

.thanks-next li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.thanks-next a {
    color: #667eea;
    text-decoration: underline;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.thanks-contact a {
    color: #667eea;
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    padding: 8rem 2rem 4rem;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    margin-bottom: 0.5rem;
}

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

.legal-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    list-style: disc;
    margin-bottom: 0.7rem;
}

.legal-container ol li {
    list-style: decimal;
}

.legal-container a {
    color: #667eea;
    text-decoration: underline;
}

/* CTA Simple */
.section-cta-simple {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.cta-simple-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
}

.cta-simple-box h2 {
    margin-bottom: 1rem;
}

.cta-simple-box p {
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #667eea;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background-color: #5568d3;
}

/* Responsive */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .hero-text-narrow h1 {
        font-size: 2.4rem;
    }

    .text-flow-narrow {
        padding: 0 1rem;
    }

    .section-text-flow,
    .section-services,
    .section-form {
        padding: 3rem 1rem;
    }

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

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

@media (max-width: 480px) {
    .btn-cta-large,
    .btn-submit,
    .btn-select-service {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}