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

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #dbeafe;
    --color-secondary: #7c3aed;
    --color-secondary-light: #ede9fe;
    --color-success: #22c55e;
    --color-success-light: #dcfce7;
    --color-warning: #f59e0b;
    --color-warning-light: #fef3c7;
    --color-accent: #06b6d4;
    --color-accent-light: #cffafe;
    --color-pink: #ec4899;
    --color-pink-light: #fce7f3;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-lighter: #94a3b8;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #f1f5f9;
    --color-border: #e2e8f0;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    gap: 0.5rem;
}

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

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

.btn-secondary {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: var(--color-border);
    color: var(--color-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-text);
}

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

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

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

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

.logo-icon {
    flex-shrink: 0;
}

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

.nav-menu a {
    color: var(--color-text-light);
    font-weight: 500;
    transition: color var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }

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

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    max-width: 400px;
    width: 100%;
}

@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }
}

/* Page Hero */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
    text-align: center;
}

.page-hero h1 {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background-color: var(--color-bg-alt);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

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

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.philosophy-visual {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .philosophy-content {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-visual {
        order: -1;
    }
}

/* Services Highlight */
.services-highlight {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

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

.service-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

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

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 1rem;
}

@media (max-width: 900px) {
    .process-connector {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.testimonials-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    flex-shrink: 0;
}

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

.author-company {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    min-width: 150px;
    text-align: center;
}

.industry-item span {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.benefits-list {
    max-width: 700px;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefits-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

.benefits-text h2 {
    margin-bottom: 2rem;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

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

.faq-answer.active {
    display: block;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: white;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    position: relative;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-light);
}

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

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
}

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

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

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

.cookie-toggle label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.cookie-toggle.disabled label {
    color: var(--color-text-lighter);
}

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

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.service-detail-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background-color: var(--color-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-detail-icon {
    flex-shrink: 0;
}

.service-detail-title {
    flex: 1;
    min-width: 200px;
}

.service-detail-title h2 {
    margin-bottom: 0.25rem;
}

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

.service-detail-price {
    text-align: right;
}

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

.price-period {
    color: var(--color-text-light);
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-success);
}

.service-detail-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text);
}

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

/* Comparison Table */
.comparison-section {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background-color: var(--color-bg-dark);
    font-weight: 600;
}

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

/* Benefits Grid Alt */
.benefits-grid-section {
    padding: 4rem 0;
}

.benefits-grid-alt {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit-block {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.benefit-block svg {
    margin: 0 auto 1rem;
}

.benefit-block h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-block p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Process Alt */
.process-alt-section {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.process-alt-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-alt-step {
    flex: 1;
    min-width: 220px;
}

.process-alt-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: 1rem;
}

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

.process-alt-step p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.story-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-illustration {
    max-width: 300px;
}

@media (max-width: 768px) {
    .story-content {
        flex-direction: column;
    }

    .story-visual {
        order: -1;
    }
}

/* Milestones */
.milestones-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.milestones-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.milestone-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

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

@media (max-width: 600px) {
    .milestone-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

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

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.team-member {
    text-align: center;
    max-width: 280px;
}

.member-avatar {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

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

.member-bio {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.team-note {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

/* Philosophy Detail */
.philosophy-detail {
    padding: 5rem 0;
}

.philosophy-block {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-icon-large {
    flex-shrink: 0;
}

.philosophy-text-block h2 {
    margin-bottom: 1.5rem;
}

.philosophy-text-block p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .philosophy-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Achievements */
.achievements-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.achievements-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    min-width: 180px;
}

.achievement-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.achievement-label {
    display: block;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 0;
}

.commitment-content h2 {
    margin-bottom: 2rem;
}

.commitment-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.commitment-item svg {
    flex-shrink: 0;
}

.commitment-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.commitment-item p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

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

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.contact-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.contact-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.contact-note {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Directions Section */
.directions-section {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.directions-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.directions-text {
    flex: 1;
}

.directions-text h2 {
    margin-bottom: 2rem;
}

.directions-block {
    margin-bottom: 1.5rem;
}

.directions-block h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.directions-block p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

.directions-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.map-illustration {
    max-width: 300px;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .directions-content {
        flex-direction: column;
    }

    .directions-visual {
        order: -1;
    }
}

/* Company Info Section */
.company-info-section {
    padding: 4rem 0;
}

.company-info-content h2 {
    margin-bottom: 2rem;
}

.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.info-label {
    font-weight: 500;
    color: var(--color-text);
    min-width: 150px;
}

.info-value {
    color: var(--color-text-light);
}

@media (max-width: 600px) {
    .company-info-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* About Contact Section */
.about-contact-section {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.about-contact-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-contact-text {
    flex: 1;
}

.about-contact-text h2 {
    margin-bottom: 1.5rem;
}

.about-contact-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.about-contact-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-contact-content {
        flex-direction: column;
    }

    .about-contact-visual {
        order: -1;
    }
}

/* Support Channels Section */
.support-channels-section {
    padding: 4rem 0;
}

.support-channels-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-channel {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.support-channel svg {
    margin: 0 auto 1rem;
}

.support-channel h3 {
    margin-bottom: 0.75rem;
}

.support-channel p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.9rem;
}

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

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

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

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Meanwhile Section */
.meanwhile-section {
    padding: 4rem 0;
    background-color: var(--color-bg-alt);
}

.meanwhile-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meanwhile-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.meanwhile-card svg {
    margin: 0 auto 1rem;
}

.meanwhile-card h3 {
    margin-bottom: 0.75rem;
}

.meanwhile-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.link-arrow {
    font-weight: 500;
    color: var(--color-primary);
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-hero {
    padding: 3rem 0;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.legal-section p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.legal-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-list li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: var(--color-primary);
}

/* GDPR Specific */
.principle-block {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.principle-block h3 {
    margin-top: 0;
}

.principle-block p {
    margin: 0;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-item {
    flex: 1;
    min-width: 250px;
    padding: 1.25rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.right-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.right-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Cookie Policy Specific */
.cookie-category {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.cookie-category h3 {
    margin-top: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    font-weight: 600;
    color: var(--color-text);
}

.cookie-table td {
    color: var(--color-text-light);
}

.cookie-note {
    font-size: 0.875rem;
    font-style: italic;
    margin: 0;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    z-index: 1001;
}

.skip-link:focus {
    top: 0;
}
