/* 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 Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a365d;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
}

.nav.active {
    right: 0;
}

.nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: #2d3748;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav a:hover {
    background: #f7fafc;
    color: #2c5282;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

/* Page Hero */
.page-hero {
    background: #f7fafc;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-hero h1 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2c5282;
    color: #fff;
}

.btn-primary:hover {
    background: #1a365d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background: #cbd5e0;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.alt-bg {
    background: #f7fafc;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro h2 {
    font-size: 1.875rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.125rem;
    color: #4a5568;
}

.section-intro-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.125rem;
    color: #4a5568;
}

h2 {
    font-size: 1.875rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.375rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Feature Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

/* Two Column Layout */
.two-column-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-content {
    flex: 1;
}

.insight-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

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

/* Market Regions */
.market-regions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.region-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.0625rem;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

/* Considerations List */
.considerations-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.consideration-item {
    background: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    border-top: 3px solid #667eea;
}

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

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-icon {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.25rem;
}

/* CTA Section */
.cta-section {
    background: #f7fafc;
    padding: 4rem 0;
    text-align: center;
}

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

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

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

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Content Box */
.content-box {
    max-width: 900px;
    margin: 0 auto;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* Client Types */
.client-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.client-type-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Approach Content */
.approach-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

/* Differentiators */
.differentiators {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diff-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.diff-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

/* Services */
.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.0625rem;
    color: #4a5568;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    color: #fff;
    margin: 0;
    font-size: 1.625rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
}

.service-content {
    padding: 2rem;
}

.service-includes {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 6px;
}

.service-includes h3 {
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-style: italic;
    color: #4a5568;
}

/* Process Explanation */
.process-explanation {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block h2 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.info-block a {
    color: #667eea;
    font-weight: 500;
}

.info-note {
    font-size: 0.9375rem;
    color: #718096;
    margin-top: 0.5rem;
}

.contact-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.contact-list li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.directions {
    margin-top: 1.5rem;
}

.directions h4 {
    color: #2d3748;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Expectations Grid */
.expectations-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expectation-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    border-top: 3px solid #667eea;
}

/* Company Info Block */
.company-info-block {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

/* While Waiting */
.while-waiting {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.waiting-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.waiting-card a {
    display: inline-block;
    margin-top: 1rem;
    color: #667eea;
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 1.5rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.cookie-table {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.cookie-table ul {
    list-style: none;
    margin-left: 0;
}

.cookie-table li {
    padding: 0.5rem 0;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #cbd5e0;
    padding: 3rem 0 1.5rem;
}

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

.footer-column h3 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #cbd5e0;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9375rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    color: #e2e8f0;
    margin: 0;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-options {
    margin: 1.5rem 0;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.9375rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .mobile-menu-toggle {
        display: none;
    }

    .nav {
        position: static;
        width: auto;
        height: auto;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .nav ul {
        flex-direction: row;
        gap: 0.5rem;
    }

    .features-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .two-column-layout {
        flex-direction: row;
    }

    .market-regions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .region-card {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

    .testimonials {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .stat-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .client-types {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .client-type-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .differentiators {
        gap: 2.5rem;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-info {
        flex: 0 0 300px;
    }

    .contact-content {
        flex: 1;
    }

    .expectations-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expectation-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .while-waiting {
        flex-direction: row;
    }

    .waiting-card {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        margin-right: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }

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

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

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

    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-card {
        min-width: 0;
    }

    .market-regions {
        flex-wrap: nowrap;
    }

    .region-card {
        min-width: 0;
    }

    .testimonials {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        min-width: 0;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        min-width: 0;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        min-width: 0;
    }

    .client-types {
        flex-wrap: nowrap;
    }

    .client-type-card {
        min-width: 0;
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-item {
        min-width: 0;
    }

    .expectations-grid {
        flex-wrap: nowrap;
    }

    .expectation-card {
        min-width: 0;
    }

    .while-waiting {
        flex-wrap: nowrap;
    }
}