/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    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: var(--primary-color);
}

.nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

.nav-list.active {
    display: flex;
}

.nav-list li {
    padding: 0.5rem 20px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

.section-header {
    margin-bottom: 3rem;
}

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

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.bg-light {
    background-color: var(--bg-light);
}

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

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

.hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

/* Page Hero */
.page-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

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

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Grid Layouts */
.intro-grid,
.services-grid,
.values-grid,
.industries-grid,
.testimonials-grid,
.team-grid,
.benefits-grid,
.expectations-grid,
.inquiries-grid,
.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Cards */
.intro-item,
.service-card,
.value-card,
.testimonial-card,
.team-member,
.benefit-item,
.expectation-item,
.inquiry-card,
.comparison-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.intro-item:hover,
.service-card:hover,
.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-icon,
.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.intro-icon img,
.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:after {
    content: '→';
}

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

.column {
    flex: 1;
}

/* Highlight Box */
.highlight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Stats Section */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 4rem;
    position: relative;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Industry Grid */
.industry-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.125rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
}

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

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

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

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Services Page */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-header {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.service-tagline {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 0;
}

.service-body {
    padding: 2rem;
}

.service-includes {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-includes li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background-color: #eff6ff;
}

.pricing-card h4 {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.comparison-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.recommendation {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

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

.benefit-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

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

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

.contact-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    margin: 0;
}

.office-info,
.directions {
    margin-top: 2rem;
}

.contact-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-guidelines {
    margin: 2rem 0;
}

.contact-guidelines h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.contact-guidelines ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.contact-guidelines li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-note {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
    margin-top: 2rem;
}

.company-description {
    max-width: 800px;
    margin: 0 auto;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.stat-inline {
    font-size: 1.125rem;
}

.stat-inline strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* About Page */
.values-section .values-grid {
    margin-top: 2rem;
}

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

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

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 80px;
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon img {
    width: 50px;
    height: 50px;
}

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #94a3b8;
    font-size: 0.875rem;
}

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

.footer-column a {
    color: #cbd5e1;
    font-size: 0.875rem;
}

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

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

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    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;
    font-size: 0.875rem;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

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

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

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

    h2 {
        font-size: 2.5rem;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-list li {
        padding: 0;
    }

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

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

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

    .intro-grid,
    .values-grid,
    .team-grid,
    .expectations-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .intro-item,
    .value-card,
    .team-member,
    .expectation-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .service-card {
        flex: 1;
    }

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

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

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

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

    .testimonial-card {
        flex: 1;
    }

    .industries-grid,
    .comparison-grid,
    .inquiries-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-item,
    .comparison-item,
    .inquiry-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .pricing-options {
        flex-direction: row;
    }

    .pricing-card {
        flex: 1;
    }

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

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

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

    .stat-inline {
        flex: 1 1 calc(50% - 0.5rem);
    }

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

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-actions {
        flex-shrink: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .intro-grid {
        flex-wrap: nowrap;
    }

    .intro-item {
        flex: 1;
    }

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

    .value-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

    .stat-item {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1;
    }

    .team-grid {
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .industries-grid {
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .comparison-grid {
        flex-wrap: wrap;
    }

    .comparison-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

    .inquiry-card {
        flex: 1;
    }

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

    .expectation-item {
        flex: 1;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal,
    .mobile-menu-toggle,
    .hero-actions,
    .cta-section {
        display: none;
    }
}
