/* ========================================
   CSS Variables & Base Styles
======================================== */
:root {
    --color-primary: #2d5a7b;
    --color-primary-dark: #1a3a4f;
    --color-secondary: #264653;
    --color-accent: #f4a261;
    --color-accent-dark: #e76f51;
    --color-highlight: #2a9d8f;
    --color-warm: #e9c46a;
    --color-bg: #f8f4f0;
    --color-bg-alt: #fff;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #e0dcd8;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: 0.3s ease;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

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

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

ul, ol {
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

li {
    margin-bottom: var(--spacing-xs);
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--spacing-xxl) 0;
    }
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

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

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

/* ========================================
   Header & Navigation
======================================== */
.header {
    background-color: var(--color-bg-alt);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-secondary);
}

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

.logo svg {
    flex-shrink: 0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-secondary);
    position: relative;
    transition: background-color var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-secondary);
    left: 0;
    transition: transform var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg-alt);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: var(--spacing-md);
    margin: 0;
}

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

.nav-menu li {
    margin-bottom: var(--spacing-xs);
}

.nav-link {
    display: block;
    padding: var(--spacing-sm);
    color: var(--color-text);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--color-bg);
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: var(--spacing-xs);
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-link {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    padding: var(--spacing-xl) 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

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

.hero-content h1 {
    margin-bottom: var(--spacing-md);
}

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

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

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

@media (min-width: 768px) {
    .hero {
        padding: var(--spacing-xxl) 0;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }
}

/* ========================================
   Page Hero
======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: var(--spacing-xs);
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ========================================
   Section Labels
======================================== */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-highlight);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Philosophy Section
======================================== */
.philosophy-section {
    background-color: var(--color-bg-alt);
}

.philosophy-content {
    max-width: 700px;
    margin-bottom: var(--spacing-xl);
}

.philosophy-content p {
    color: var(--color-text-light);
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

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

.value-item h3 {
    margin-bottom: 0;
}

.value-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .philosophy-values {
        flex-direction: row;
    }

    .value-item {
        flex: 1;
    }
}

/* ========================================
   Services Highlight
======================================== */
.services-highlight h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-icon {
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.service-link {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.service-link::after {
    content: '→';
    transition: transform var(--transition);
}

.service-link:hover::after {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - var(--spacing-md));
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(25% - var(--spacing-md));
    }
}

/* ========================================
   Stats Section
======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

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

.stat-number {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-warm);
    margin-bottom: var(--spacing-xs);
}

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

/* ========================================
   Process Section
======================================== */
.process-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-highlight);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.process-step h3 {
    margin-bottom: 0;
}

.process-step p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
    }

    .process-step {
        flex: 1;
        text-align: center;
        align-items: center;
    }
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-section {
    background-color: var(--color-bg-alt);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.testimonial-card {
    background-color: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-accent);
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-secondary);
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }
}

/* ========================================
   Industries Section
======================================== */
.industries-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius);
    min-width: 140px;
    text-align: center;
    transition: transform var(--transition);
}

.industry-item:hover {
    transform: translateY(-2px);
}

.industry-item span {
    font-weight: 500;
    color: var(--color-secondary);
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    background-color: var(--color-bg);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

.faq-item {
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    transition: transform var(--transition);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

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

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

/* ========================================
   Tips Section
======================================== */
.tips-section {
    background-color: var(--color-bg-alt);
}

.tips-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tips-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.tip-card {
    background-color: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
}

.tip-icon {
    margin-bottom: var(--spacing-md);
}

.tip-card h3 {
    margin-bottom: var(--spacing-xs);
}

.tip-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .tips-grid {
        flex-direction: row;
    }

    .tip-card {
        flex: 1;
    }
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.cta-alt {
    background: linear-gradient(135deg, var(--color-highlight) 0%, #1e7b6e 100%);
}

/* ========================================
   Footer
======================================== */
.footer {
    background-color: var(--color-secondary);
    color: #fff;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: var(--spacing-sm);
}

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

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

.footer h4 {
    color: #fff;
    margin-bottom: var(--spacing-sm);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: var(--spacing-xs);
}

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

.footer a:hover {
    color: var(--color-warm);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-nav,
    .footer-legal,
    .footer-contact {
        flex: 0 0 auto;
    }
}

/* ========================================
   Cookie Banner
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-secondary);
    color: #fff;
    padding: var(--spacing-md);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--color-warm);
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }
}

/* ========================================
   Cookie Modal
======================================== */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.modal-content h3 {
    margin-bottom: var(--spacing-sm);
}

.modal-content > p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.cookie-options {
    margin-bottom: var(--spacing-lg);
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
}

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-highlight);
}

.option-text {
    display: flex;
    flex-direction: column;
}

.option-text strong {
    color: var(--color-secondary);
}

.option-text small {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.modal-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

/* ========================================
   Story Section
======================================== */
.story-section {
    background-color: var(--color-bg-alt);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

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

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

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

.story-illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
}

@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }
}

/* ========================================
   Milestones Section
======================================== */
.milestones-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.milestones-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
    padding-left: var(--spacing-lg);
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-border);
}

.milestone-item {
    position: relative;
}

.milestone-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--spacing-lg) - 6px);
    top: 4px;
    width: 15px;
    height: 15px;
    background-color: var(--color-highlight);
    border-radius: 50%;
}

.milestone-year {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: var(--spacing-xs);
}

.milestone-content h3 {
    margin-bottom: var(--spacing-xs);
}

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

@media (min-width: 768px) {
    .milestones-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        padding-left: 0;
    }

    .milestones-timeline::before {
        display: none;
    }

    .milestone-item {
        flex: 1 1 calc(33.333% - var(--spacing-md));
        padding: var(--spacing-md);
        background-color: var(--color-bg-alt);
        border-radius: var(--border-radius);
    }

    .milestone-item::before {
        display: none;
    }
}

/* ========================================
   Team Section
======================================== */
.team-section {
    background-color: var(--color-bg-alt);
}

.team-section h2 {
    text-align: center;
}

.team-section .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.team-card {
    background-color: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.team-avatar {
    margin-bottom: var(--spacing-md);
}

.team-card h3 {
    margin-bottom: var(--spacing-xs);
}

.team-role {
    display: block;
    color: var(--color-highlight);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

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

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-card {
        flex: 1 1 calc(50% - var(--spacing-md));
    }
}

@media (min-width: 1024px) {
    .team-card {
        flex: 1 1 calc(25% - var(--spacing-md));
    }
}

/* ========================================
   Values Section
======================================== */
.values-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-card {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.value-icon {
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    margin-bottom: var(--spacing-xs);
}

.value-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - var(--spacing-md));
    }
}

@media (min-width: 1024px) {
    .value-card {
        flex: 1 1 calc(25% - var(--spacing-md));
    }
}

/* ========================================
   Achievements Section
======================================== */
.achievements-section {
    background-color: var(--color-bg-alt);
}

.achievements-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.achievements-text h2 {
    margin-bottom: var(--spacing-lg);
}

.achievements-list {
    list-style: none;
    padding: 0;
}

.achievements-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.achievements-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.achievements-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievement-badge {
    width: 200px;
    height: 200px;
}

@media (min-width: 768px) {
    .achievements-content {
        flex-direction: row;
        align-items: center;
    }

    .achievements-text {
        flex: 1;
    }

    .achievements-visual {
        flex: 0 0 auto;
    }
}

/* ========================================
   Workspace Section
======================================== */
.workspace-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.workspace-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.workspace-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius);
}

.workspace-feature svg {
    flex-shrink: 0;
}

.workspace-feature h3 {
    margin-bottom: var(--spacing-xs);
}

.workspace-feature p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .workspace-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .workspace-feature {
        flex: 1 1 calc(50% - var(--spacing-md));
    }
}

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

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

.services-main {
    padding-top: 0;
}

.service-category {
    margin-bottom: var(--spacing-xxl);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.category-description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-highlight);
}

.service-item-content h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.service-item-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.service-item-price {
    display: flex;
    align-items: center;
}

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

@media (min-width: 768px) {
    .service-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

/* ========================================
   Workshops Section
======================================== */
.workshops-section {
    background-color: var(--color-bg-alt);
}

.workshops-section h2 {
    text-align: center;
}

.workshops-section .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.workshop-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.workshop-card {
    background-color: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
}

.workshop-icon {
    margin-bottom: var(--spacing-md);
}

.workshop-card h3 {
    margin-bottom: var(--spacing-xs);
}

.workshop-card p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.workshop-details {
    display: flex;
    justify-content: space-between;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-border);
}

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

.workshop-price {
    font-weight: 700;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .workshop-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .workshop-card {
        flex: 1 1 calc(50% - var(--spacing-md));
    }
}

@media (min-width: 1024px) {
    .workshop-card {
        flex: 1 1 calc(33.333% - var(--spacing-md));
    }
}

/* ========================================
   Benefits Section
======================================== */
.benefits-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
}

.benefit-item svg {
    margin-bottom: var(--spacing-sm);
}

.benefit-item h3 {
    margin-bottom: var(--spacing-xs);
}

.benefit-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - var(--spacing-md));
    }
}

@media (min-width: 1024px) {
    .benefit-item {
        flex: 1 1 calc(25% - var(--spacing-md));
    }
}

/* ========================================
   Comparison Table
======================================== */
.comparison-section {
    background-color: var(--color-bg-alt);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

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

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

.comparison-table th {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: var(--color-bg-alt);
}

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

/* ========================================
   Contact Page
======================================== */
.contact-main {
    background-color: var(--color-bg-alt);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card {
    background-color: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.info-icon {
    margin-bottom: var(--spacing-md);
}

.contact-info-card h2 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.info-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.info-text a {
    color: var(--color-primary);
    font-weight: 500;
}

.info-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }
}

/* ========================================
   Directions Section
======================================== */
.directions-section h2 {
    margin-bottom: var(--spacing-lg);
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.directions-text h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.directions-text > p {
    color: var(--color-text-light);
}

.directions-list {
    list-style: none;
    padding: 0;
}

.directions-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.directions-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

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

    .directions-text {
        flex: 1;
    }

    .directions-visual {
        flex: 0 0 auto;
    }
}

/* ========================================
   Company Info Section
======================================== */
.company-info-section {
    background-color: var(--color-bg-alt);
}

.company-info-section h2 {
    margin-bottom: var(--spacing-lg);
}

.company-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.company-info-item {
    flex: 1 1 calc(50% - var(--spacing-md));
    min-width: 200px;
}

.company-info-item h3 {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

.company-info-item p {
    font-weight: 500;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .company-info-item {
        flex: 1 1 calc(33.333% - var(--spacing-md));
    }
}

/* ========================================
   About Location Section
======================================== */
.about-location-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.about-location-text {
    max-width: 600px;
}

.about-location-text p {
    color: var(--color-text-light);
}

.about-location-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.location-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius);
}

.location-feature span {
    font-weight: 500;
}

@media (min-width: 768px) {
    .about-location-content {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .about-location-features {
        flex: 0 0 auto;
        flex-direction: column;
    }
}

/* ========================================
   Thank You Page
======================================== */
.thank-you-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-bg-alt);
}

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

.thank-you-icon {
    margin-bottom: var(--spacing-lg);
}

.thank-you-content h1 {
    color: var(--color-highlight);
    margin-bottom: var(--spacing-md);
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.thank-you-note {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.thank-you-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Additional Info Section
======================================== */
.additional-info-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.info-card svg {
    margin-bottom: var(--spacing-md);
}

.info-card h3 {
    margin-bottom: var(--spacing-xs);
}

.info-card p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

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

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

@media (min-width: 768px) {
    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }
}

/* ========================================
   Legal Pages
======================================== */
.legal-content {
    background-color: var(--color-bg-alt);
}

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

.legal-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
}

.legal-text h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.legal-text h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-text h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-text p,
.legal-text ul,
.legal-text ol {
    color: var(--color-text-light);
}

.legal-date {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    font-style: italic;
    color: var(--color-text-light);
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
    font-size: 0.9rem;
}

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

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

.cookie-table td {
    background-color: var(--color-bg-alt);
}

/* ========================================
   Utility Classes
======================================== */
[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

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