/* ===================================
   CSS Variables & Base Styles
   =================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --primary-lighter: #bfdbfe;
    --primary-lightest: #dbeafe;
    --secondary: #64748b;
    --secondary-dark: #475569;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 2px 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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* ===================================
   Typography
   =================================== */

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

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: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

/* ===================================
   Layout
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

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

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

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

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

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

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

    .nav-menu li {
        border-bottom: 1px solid var(--border-light);
    }

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

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

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

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

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

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

.btn-outline {
    background: transparent;
    border-color: var(--border-light);
    color: var(--text-medium);
}

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

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

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

/* ===================================
   Hero Section
   =================================== */

.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.hero-content {
    flex: 1;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 540px;
}

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

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

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

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .hero-visual {
        order: -1;
        max-width: 300px;
    }
}

/* ===================================
   Page Hero (Inner Pages)
   =================================== */

.page-hero {
    background: var(--primary);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--primary-lighter);
    font-size: 1.125rem;
    margin: 0;
}

/* ===================================
   Section Styles
   =================================== */

section {
    padding: 5rem 0;
}

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

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

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

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

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    background: var(--primary);
    padding: 3rem 0;
}

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

.stat-item {
    text-align: center;
    color: var(--bg-white);
}

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

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

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===================================
   Philosophy Section
   =================================== */

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

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

.philosophy-text {
    flex: 1;
}

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

.philosophy-visual {
    flex: 0 0 250px;
}

.philosophy-icon {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .philosophy-content {
        flex-direction: column;
        gap: 2rem;
    }

    .philosophy-visual {
        flex: 0 0 auto;
        width: 200px;
    }
}

/* ===================================
   Services Cards
   =================================== */

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

.service-card {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

.service-card p {
    margin: 0;
    font-size: 0.9375rem;
}

.services-cta {
    text-align: center;
}

/* ===================================
   Process Section
   =================================== */

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

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-lightest);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

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

.process-step p {
    margin: 0;
    font-size: 0.9375rem;
}

/* ===================================
   Testimonials
   =================================== */

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

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

/* ===================================
   Industries Section
   =================================== */

.industries-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.industries-text {
    flex: 1;
}

.industries-text h2 {
    margin-bottom: 1rem;
}

.industries-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.industry-item {
    flex: 1 1 calc(50% - 0.5rem);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

@media (max-width: 768px) {
    .industries-content {
        flex-direction: column;
        gap: 2rem;
    }

    .industry-item {
        flex: 1 1 100%;
    }
}

/* ===================================
   Insights Section
   =================================== */

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

.insight-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.insight-card h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.insight-card p {
    margin: 0;
    font-size: 0.9375rem;
}

/* ===================================
   FAQ Section
   =================================== */

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

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

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

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

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

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

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

.faq-icon::after {
    width: 2px;
    height: 12px;
    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-bottom: 1.25rem;
}

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

.faq-answer p {
    margin: 0;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: var(--primary);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--primary-lighter);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--secondary);
    font-size: 0.9375rem;
}

.footer-links {
    flex: 0 0 150px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--secondary);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-contact {
    flex: 0 0 200px;
}

.footer-contact p {
    color: var(--secondary);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--secondary-dark);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--secondary);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        gap: 2rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        flex: 1 1 100%;
    }
}

/* ===================================
   Cookie Banner
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.9375rem;
}

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

.cookie-actions .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

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

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

/* ===================================
   Cookie Modal
   =================================== */

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

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

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

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

.cookie-modal-header h3 {
    margin: 0;
}

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

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

.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(--border-light);
}

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

.cookie-option-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

.toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-light);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--bg-white);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle.disabled .toggle-slider {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-light);
}

.cookie-modal-footer .btn {
    width: 100%;
}

/* ===================================
   Services Page
   =================================== */

.services-intro {
    background: var(--bg-light);
    padding: 2rem 0;
}

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

.intro-content p {
    margin: 0;
    font-size: 1.0625rem;
}

.services-category {
    padding: 4rem 0;
}

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

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

.category-header h2 {
    margin: 0;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.alt-bg .service-item {
    background: var(--bg-white);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.service-info p {
    margin: 0;
    font-size: 0.9375rem;
}

.service-price {
    flex-shrink: 0;
    text-align: right;
}

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

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

    .service-price {
        text-align: left;
    }
}

/* ===================================
   Benefits Grid
   =================================== */

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

.benefit-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    text-align: center;
}

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

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

.benefit-item p {
    margin: 0;
    font-size: 0.9375rem;
}

/* ===================================
   Process Overview (Services Page)
   =================================== */

.process-flow {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-flow .process-item {
    flex: 1 1 180px;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.process-flow .process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--bg-white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.process-flow h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-flow p {
    font-size: 0.875rem;
    margin: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

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

/* ===================================
   Contact Page
   =================================== */

.contact-main {
    padding: 4rem 0;
}

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

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

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

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

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

.contact-note {
    font-size: 0.9375rem;
    margin: 0;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9375rem;
}

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

.contact-details-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-info-card {
    background: var(--primary-lightest);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.company-info-card h3 {
    margin-bottom: 1rem;
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--primary-lighter);
}

.company-stats .stat {
    text-align: center;
}

.company-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.company-stats .stat-desc {
    font-size: 0.75rem;
    color: var(--text-medium);
}

.directions-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.directions-card h3 {
    margin-bottom: 1.5rem;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.direction-item {
    display: flex;
    gap: 1rem;
}

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

.direction-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.direction-text p {
    margin: 0;
    font-size: 0.9375rem;
}

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

/* ===================================
   Service Areas
   =================================== */

.areas-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.areas-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.areas-text p {
    margin: 0;
}

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

.area-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 250px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.area-card h4 {
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.area-card p {
    margin: 0;
    font-size: 0.9375rem;
}

/* ===================================
   Business Info
   =================================== */

.business-info {
    background: var(--bg-gray);
}

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

.business-info-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.business-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.business-detail-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 200px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.business-detail-item h4 {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.business-detail-item p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================
   Thank You Page
   =================================== */

.thank-you-section {
    padding: 5rem 0;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

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

.thank-you-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you-details h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.next-steps .step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.next-steps .step-icon {
    flex-shrink: 0;
}

.next-steps .step-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.next-steps .step-text p {
    margin: 0;
    font-size: 0.9375rem;
}

.thank-you-actions p {
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-info {
    background: var(--bg-light);
    padding: 3rem 0;
}

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

.quick-info-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.quick-info-card h3 {
    margin-bottom: 1rem;
}

.hours-compact p {
    margin: 0.25rem 0;
    font-size: 0.9375rem;
}

/* ===================================
   Legal Pages
   =================================== */

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

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

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-lightest);
}

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

.legal-section ul {
    margin-bottom: 1rem;
}

.contact-details-legal {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.contact-details-legal p {
    margin: 0.25rem 0;
}

.legal-date {
    font-style: italic;
    color: var(--text-light);
}

/* Cookie Table */
.cookie-table {
    margin: 1rem 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cookie-row {
    display: flex;
    border-bottom: 1px solid var(--border-light);
}

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

.cookie-row.header {
    background: var(--bg-gray);
    font-weight: 600;
}

.cookie-row span {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.cookie-row span:first-child {
    flex: 0 0 140px;
}

.cookie-row span:last-child {
    flex: 0 0 100px;
}

@media (max-width: 600px) {
    .cookie-row {
        flex-direction: column;
    }

    .cookie-row span {
        flex: none !important;
        border-bottom: 1px solid var(--border-light);
    }

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

    .cookie-row.header {
        display: none;
    }
}

/* ===================================
   About Page
   =================================== */

.story-section {
    padding: 4rem 0;
}

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

.story-block {
    flex: 1;
}

.year-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.story-visual {
    flex: 0 0 300px;
}

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

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

    .story-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-lighter);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-content {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    display: inline-block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.timeline-content p {
    margin: 0;
    font-size: 0.9375rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.value-card p {
    margin: 0;
    font-size: 0.9375rem;
}

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

.team-member {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    text-align: center;
}

.member-avatar {
    margin-bottom: 1rem;
}

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

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

.team-member p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Achievements */
.achievements-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.achievements-text {
    flex: 1;
}

.achievements-text h2 {
    margin-bottom: 1rem;
}

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

.achievement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.achievement-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.achievement-text p {
    margin: 0;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .achievements-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Culture */
.culture-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.culture-visual {
    flex: 0 0 300px;
}

.culture-illustration {
    width: 100%;
    height: auto;
}

.culture-text {
    flex: 1;
}

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

@media (max-width: 768px) {
    .culture-content {
        flex-direction: column;
        gap: 2rem;
    }

    .culture-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        order: -1;
    }
}
