/* 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;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0.8em;
}

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

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

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #004999;
}

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

ul {
    margin-left: 1.5em;
    margin-bottom: 1.2em;
}

li {
    margin-bottom: 0.5em;
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

/* Navigation - Minimal Style for Long-Form Funnel */
.nav-minimal {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

/* Hero Section - Scroll Style */
.hero-scroll {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

/* Content Containers */
.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.wide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Curiosity Hook Section */
.curiosity-hook {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.curiosity-hook h2 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.inline-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #0066cc;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cta-inline:hover {
    background: #004999;
    transform: translateY(-1px);
    color: white;
}

/* Story Section - Asymmetric Grid */
.story-section {
    padding: 5rem 2rem;
    background: white;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-image {
    flex: 1;
}

.placeholder-img {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    border-radius: 8px;
}

.img-vertical {
    padding-top: 120%;
}

.img-square {
    padding-top: 100%;
}

/* Problem Amplification */
.problem-amplify {
    background: #1a1a1a;
    color: white;
    padding: 5rem 2rem;
}

.problem-amplify h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.problem-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.prob-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.prob-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prob-card h4 {
    margin-bottom: 1rem;
    color: white;
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.insight-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #4CAF50;
    color: white;
    font-weight: 700;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Trust Builder - Testimonials */
.trust-builder {
    background: #667eea;
    padding: 5rem 2rem;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
    color: white;
    backdrop-filter: blur(10px);
}

.quote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Benefits Stack */
.benefits-stack {
    padding: 3rem 0;
}

.benefit-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.benefit-text {
    flex: 1;
}

.benefit-visual {
    flex: 1;
}

/* Service Reveal Section */
.service-reveal {
    padding: 5rem 2rem;
    background: white;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.services-funnel {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h4 {
    margin: 0;
    color: #1a1a1a;
}

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

.cta-service {
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Urgency Block */
.urgency-block {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.urgency-content {
    max-width: 700px;
    margin: 0 auto;
}

.urgency-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #ff6b6b;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #ff6b6b;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    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: #2c2c2c;
}

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

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

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

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Final Trust Section */
.final-trust {
    padding: 4rem 2rem;
    background: white;
}

.trust-badges {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-item p {
    margin: 0;
    font-weight: 600;
    color: #2c2c2c;
}

/* Footer */
.site-footer {
    background: #2c2c2c;
    color: #e0e0e0;
    padding: 3rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    margin-bottom: 0.5rem;
}

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

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

.footer-col a {
    color: #e0e0e0;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

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

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

.sticky-btn {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    background: white;
    color: #667eea;
    text-align: center;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.sticky-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

/* Page Hero (for internal pages) */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-story {
    padding: 5rem 2rem;
    background: white;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 2rem;
    background: white;
}

.team-list {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.member-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.role {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.cta-about {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

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

.cta-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    color: white;
}

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

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

/* Services Page Styles */
.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

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

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

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
}

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

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

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

.btn-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
    color: white;
}

.service-guarantee {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.cta-services {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 2rem;
    background: white;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    color: #667eea;
    margin-bottom: 0.8rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

.contact-cta {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.thanks-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
}

.thanks-info h3 {
    margin-bottom: 0.5rem;
}

#selected-service-display {
    font-weight: 700;
    color: #667eea;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

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

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.contact-reminder {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
}

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

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

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

.legal-page h2 {
    margin-top: 2.5rem;
    color: #2c2c2c;
}

.legal-page h3 {
    margin-top: 1.5rem;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

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

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

    .story-grid,
    .benefit-block,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

    .benefit-block.reverse {
        flex-direction: column;
    }

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

    .testimonial-flow {
        flex-direction: column;
    }

    .trust-badges {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

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

    .brand {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .nav-links {
        display: none;
    }

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