/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #2980b9;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

/* Typography */
h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a252f;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #2c3e50;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #34495e;
}

p {
    margin-bottom: 16px;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #546e7a;
}

.highlight {
    background: #fff3cd;
    padding: 20px;
    border-left: 4px solid #ffc107;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #607d8b;
    margin-bottom: 40px;
}

.last-updated {
    color: #78909c;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 32px;
}

/* Header */
.header {
    background: #1a252f;
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #ecf0f1;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Split (Split-Screen Modern Archetype) */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
}

.hero-content .lead {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-secondary {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 0;
}

.intro-section {
    background: #f8f9fa;
    text-align: center;
}

.intro-section h2 {
    color: #e74c3c;
    font-size: 2rem;
}

/* Split Content (Core Pattern for Split-Screen Archetype) */
.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Problem Amplify Section */
.problem-amplify {
    background: #fef5e7;
}

.problem-list {
    list-style: none;
    margin: 24px 0;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Insight Reveal */
.insight-reveal {
    background: #e8f4f8;
}

.insight-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 32px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.7;
}

/* Services Showcase */
.services-showcase {
    background: white;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 3px solid #ffd700;
}

.service-card.featured h3,
.service-card.featured .tag,
.service-card.featured .service-desc,
.service-card.featured .service-features,
.service-card.featured .price {
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffd700;
    color: #1a252f;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-header {
    margin-bottom: 16px;
}

.service-header h3 {
    margin-bottom: 8px;
}

.tag {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-desc {
    font-size: 0.95rem;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

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

.service-card.featured .service-features li:before {
    color: #ffd700;
}

.service-price {
    margin: 24px 0 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.service-card.featured .service-price {
    border-top-color: rgba(255,255,255,0.3);
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a252f;
    margin-bottom: 4px;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #78909c;
}

.service-card.featured .price-note {
    color: rgba(255,255,255,0.8);
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #2980b9;
}

.service-card.featured .btn-select {
    background: white;
    color: #667eea;
}

.service-card.featured .btn-select:hover {
    background: #f8f9fa;
}

/* Testimonials Inline */
.testimonials-inline {
    background: #f8f9fa;
}

.testimonial-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-item .quote {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.author {
    color: #78909c;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
}

.form-intro {
    flex: 1;
}

.trust-elements {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 0.9rem;
    color: #546e7a;
}

.form-container {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.main-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.form-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #78909c;
    text-align: center;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.final-cta h2 {
    color: white;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
}

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

.sticky-btn {
    display: block;
    background: #e74c3c;
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(231,76,60,0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231,76,60,0.5);
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: white;
    padding: 20px;
    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;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background: #7f8c8d;
}

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

.page-hero h1 {
    color: white;
}

.page-hero .lead {
    color: rgba(255,255,255,0.9);
}

/* About Page Specific */
.about-story,
.about-evolution,
.about-philosophy {
    padding: 80px 0;
}

.about-evolution {
    background: #f8f9fa;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.stat-box strong {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-box span {
    color: #546e7a;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    background: white;
    padding: 80px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.team-member h3 {
    color: #1a252f;
    margin-bottom: 8px;
}

.role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Services Detail Page */
.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.service-detail-card.featured {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-header h2 {
    margin: 0;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3498db;
}

.service-intro {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.6;
}

.detail-list {
    list-style: none;
    margin: 20px 0 32px;
}

.detail-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.detail-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-service {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Comparison Section */
.comparison-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.faq-item p {
    margin: 0;
    color: #546e7a;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #1a252f;
    margin-bottom: 12px;
}

.contact-item p {
    color: #546e7a;
    line-height: 1.7;
}

.contact-item a {
    color: #3498db;
    font-weight: 600;
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.map-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,37,47,0.85);
    color: white;
    padding: 20px;
    text-align: center;
}

.cta-form-section {
    background: #e8f4f8;
    padding: 60px 0;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
}

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

.thanks-details {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    margin: 40px 0;
}

.submission-summary h3 {
    margin-bottom: 20px;
}

.submission-summary p {
    margin-bottom: 12px;
}

.next-steps {
    margin: 48px 0;
}

.steps-list {
    list-style: decimal;
    margin-left: 24px;
    text-align: left;
    display: inline-block;
}

.steps-list li {
    padding: 12px 0;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.thanks-extra {
    margin-top: 48px;
    color: #546e7a;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-page h2 {
    margin-top: 40px;
    font-size: 1.8rem;
}

.legal-page h3 {
    margin-top: 28px;
    font-size: 1.3rem;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid .service-card {
        flex: 1 1 calc(50% - 16px);
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .trust-elements {
        flex-wrap: wrap;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 32px;
    }

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a252f;
        padding: 20px;
        gap: 16px;
    }

    .services-grid .service-card {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .team-grid .team-member {
        flex: 1 1 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    section {
        padding: 60px 0;
    }

    .service-detail-card {
        padding: 32px 24px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

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

    .lead {
        font-size: 1.1rem;
    }

    .hero-left {
        padding: 40px 24px;
    }

    .form-container {
        padding: 28px 20px;
    }

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

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