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

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

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

ul {
    list-style: none;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

/* Container System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navigation */
.main-nav {
    background: #ffffff;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 40px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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;
    flex: 1;
}

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

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

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

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

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

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-left {
    background: #f8f9fa;
    padding: 4rem;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-right {
    overflow: hidden;
}

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

/* Split Container */
.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-left,
.split-right {
    flex: 1;
}

.split-right img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Sections */
section {
    padding: 4rem 0;
}

.intro-section {
    background: #ffffff;
}

.dark-bg {
    background: #2c3e50;
    color: #ffffff;
}

.light-bg {
    background: #f8f9fa;
}

.problem-section {
    padding: 5rem 0;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.problem-card p {
    margin: 0;
    opacity: 0.9;
}

/* Insight Section */
.insight-list {
    list-style: none;
    margin-top: 1.5rem;
}

.insight-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.insight-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: #ffffff;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
}

.service-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

/* CTA Buttons */
.cta-primary,
.cta-primary-large,
.cta-secondary,
.cta-submit {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cta-primary-large {
    background: #27ae60;
    color: #ffffff;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.cta-primary-large:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

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

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

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

/* Testimonials */
.testimonial-section {
    padding: 5rem 0;
}

.testimonial-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Trust Section */
.trust-section {
    background: #ffffff;
}

/* Benefits Section */
.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-large {
    flex: 1 1 calc(60% - 1rem);
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

.benefit-small {
    flex: 1 1 calc(40% - 1rem);
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

.benefit-large h3,
.benefit-small h3 {
    color: #ffffff;
}

/* Forms */
.form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.order-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e6ed;
    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;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.cta-submit {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.cta-submit:hover {
    background: #229954;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.center-text {
    text-align: center;
}

.urgency-section h2 {
    color: #ffffff;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin: 0;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.service-detail-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-detail-content ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-detail-content strong {
    color: #2c3e50;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: 4rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e0e6ed;
}

.comparison-table th {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

/* About Page */
.about-intro {
    padding: 4rem 0;
}

.philosophy-section {
    padding: 5rem 0;
}

.philosophy-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.philosophy-card h3 {
    color: #ffffff;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.team-photo img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

.process-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.process-step.large {
    flex: 1 1 calc(60% - 1rem);
}

.process-step.medium {
    flex: 1 1 100%;
}

.process-step.small {
    flex: 1 1 calc(40% - 1rem);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.process-step h3 {
    position: relative;
    z-index: 1;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-section h2 {
    color: #ffffff;
}

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

.contact-split {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #3498db;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #7f8c8d;
}

.contact-map img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
    color: #5a6c7d;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.thanks-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: #2c3e50;
}

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

.thanks-steps {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e6ed;
}

.thanks-contact a {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.legal-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-page h3 {
    margin-top: 1.5rem;
    color: #34495e;
}

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #5a6c7d;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page p {
    color: #5a6c7d;
}

.legal-page strong {
    color: #2c3e50;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .split-container {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card-split,
    .service-card-split.reverse,
    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

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

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

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

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-large,
    .benefit-small {
        flex: 1 1 100%;
    }

    .process-step.large,
    .process-step.small {
        flex: 1 1 100%;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .main-nav {
        padding: 1.25rem 20px;
    }

    .hero-left {
        padding: 2rem 1.5rem;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 20px;
    }

    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .order-form {
        padding: 2rem 1.5rem;
    }
}

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

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

    .service-price,
    .service-detail-price {
        font-size: 1.75rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
    }

    .cta-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}