/* 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.6;
    color: #333;
    background: #fff;
}

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

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

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 and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

.nav-menu a:hover {
    color: #2563eb;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    flex: 1;
    text-align: center;
}

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

.hero p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    max-width: 400px;
}

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

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

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

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

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

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

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1f2937;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Philosophy Section */
.philosophy {
    background: #f9fafb;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.philosophy-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

/* Statistics */
.statistics {
    background: #2563eb;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

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

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Highlight */
.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-feature {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

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

.service-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

/* Testimonials */
.testimonials {
    background: #f9fafb;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4b5563;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #1f2937;
}

/* Knowledge Section */
.knowledge-section {
    background: #fff;
}

.knowledge-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.knowledge-content {
    flex: 1;
}

.knowledge-visual {
    flex: 1;
    max-width: 400px;
}

.tips-list {
    list-style: none;
    margin-top: 1.5rem;
}

.tips-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list strong {
    color: #2563eb;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

/* Industries Section */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.industry-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.industry-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

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

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

/* Services List */
.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.service-header img {
    width: 60px;
    height: 60px;
}

.service-header > div {
    flex: 1;
}

.service-header h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.service-card p {
    color: #4b5563;
}

/* Service Benefits */
.service-benefits {
    background: #f9fafb;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-box {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.benefit-box img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.benefit-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

/* Comparison Table */
.comparison-table {
    margin-top: 2.5rem;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.comparison-cell {
    padding: 0.5rem 0;
}

/* Process Grid */
.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.process-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.process-icon {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

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

.contact-block h2,
.contact-block h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item img {
    width: 40px;
    height: 40px;
}

.contact-additional {
    flex: 1;
}

.info-card {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.info-card p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Company Info Section */
.company-info-section {
    background: #f9fafb;
}

.company-details {
    max-width: 700px;
    margin: 2rem auto 0;
}

.company-details p {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.company-details p:last-child {
    border-bottom: none;
}

/* Story Section */
.story .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.story-visual {
    flex: 1;
    max-width: 400px;
}

/* Values Section */
.values {
    background: #f9fafb;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.member-role {
    display: block;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #4b5563;
}

/* Milestones/Timeline */
.milestones {
    background: #fff;
}

.timeline {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.milestone {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.milestone:last-child {
    border-bottom: none;
}

.milestone-year {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 100px;
}

.milestone-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.milestone-content p {
    color: #4b5563;
}

/* Benefits List */
.benefits-list {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.benefit-item img {
    width: 40px;
    height: 40px;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.benefit-item p {
    color: #4b5563;
}

/* Case Examples */
.cases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.case-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.case-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.case-card p {
    color: #4b5563;
}

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

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

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

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

.next-steps {
    text-align: left;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.next-steps li {
    padding: 0.5rem 0;
    color: #4b5563;
}

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

.while-you-wait {
    padding: 1.5rem;
    background: #fef3c7;
    border-radius: 8px;
}

.while-you-wait h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.while-you-wait a {
    color: #2563eb;
    text-decoration: underline;
}

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

.legal-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-section h3 {
    text-align: left;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #1f2937;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

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

.legal-section li {
    padding: 0.25rem 0;
    color: #4b5563;
    line-height: 1.8;
}

.legal-section a {
    color: #2563eb;
    text-decoration: underline;
}

.cookie-table {
    margin-top: 1.5rem;
}

.cookie-row {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: #9ca3af;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

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

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

.cookie-option span {
    font-weight: 600;
    color: #1f2937;
}

.cookie-option p {
    margin-left: 1.75rem;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        text-align: left;
    }

    .hero-content {
        text-align: left;
    }

    .story .container {
        flex-direction: row;
    }

    .knowledge-section .container {
        flex-direction: row;
    }

    .contact-grid {
        flex-direction: row;
    }

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

    .cookie-content p {
        text-align: left;
    }

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

    .comparison-row {
        flex-direction: row;
        gap: 2rem;
    }

    .comparison-cell {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

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

/* Mobile Menu */
@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

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

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

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