:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #f3f4f6;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --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: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

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

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

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

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

.hamburger::after {
    bottom: -8px;
}

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

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

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

.nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}

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

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

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

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

    .nav-menu {
        display: flex;
        width: auto;
        flex-direction: row;
        gap: 0.25rem;
        padding-top: 0;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

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

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 0.5rem 0;
}

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

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

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(to bottom, var(--bg-alt), var(--bg));
}

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

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

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

@media (min-width: 768px) {
    .hero {
        padding: 4rem 0 5rem;
    }

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

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

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

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-stats {
        justify-content: flex-start;
    }

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

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

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

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }

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

/* Section Styles */
section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

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

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

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

.section-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

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

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

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

    .philosophy-content {
        flex: 1;
    }

    .philosophy-content h2 {
        font-size: 2rem;
    }

    .philosophy-values {
        flex: 1;
    }
}

/* Services Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(to bottom right, var(--bg), #eff6ff);
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--primary);
    flex-shrink: 0;
}

.service-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-dark);
    background: #fef3c7;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

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

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

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

    .service-card {
        flex: 1 1 300px;
    }

    .service-card.featured {
        flex: 1 1 100%;
    }
}

@media (min-width: 1024px) {
    .service-card.featured {
        flex: 1 1 calc(40% - 1rem);
    }
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

.process-steps.horizontal {
    flex-direction: column;
}

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

    .process-steps.horizontal .process-step {
        flex: 1 1 calc(50% - 1rem);
        flex-direction: column;
        text-align: center;
    }

    .process-steps.horizontal .step-number {
        margin: 0 auto 1rem;
    }
}

@media (min-width: 1024px) {
    .process-steps.horizontal .process-step {
        flex: 1;
    }
}

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

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

.testimonial {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text);
}

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

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

    .testimonial {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

/* Insights Section */
.insights-wrapper {
    background: var(--primary);
    color: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.insights-header {
    margin-bottom: 2rem;
}

.insights-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.insights-header p {
    opacity: 0.9;
}

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

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

.insight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.insight-content {
    font-size: 0.9375rem;
}

.insight-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .insights-wrapper {
        padding: 3rem;
    }

    .insights-header h2 {
        font-size: 2rem;
    }
}

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

.industry-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.industry-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin: 0 auto 1rem;
}

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

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

@media (min-width: 768px) {
    .industry-card {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

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

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

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

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

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

/* CTA Section */
.cta-section {
    background: var(--bg-alt);
}

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

.cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

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

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

/* Footer */
.footer {
    background: var(--text);
    color: #fff;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    color: var(--primary-light);
}

.footer-brand p {
    color: var(--text-lighter);
    font-size: 0.875rem;
    max-width: 300px;
}

.footer-links,
.footer-contact {
    flex: 1 1 calc(50% - 1rem);
    min-width: 150px;
}

.footer h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--text-lighter);
}

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

.footer-links a {
    color: #fff;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

@media (min-width: 768px) {
    .footer-brand {
        flex: 1 1 300px;
    }

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

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

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

.cookie-content p {
    font-size: 0.875rem;
}

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

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

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

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

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

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

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

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

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

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.cookie-required {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.cookie-option p {
    font-size: 0.875rem;
    color: var(--text-light);
    padding-left: 1.75rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.modal-footer .btn {
    flex: 1;
}

/* Services Page Styles */
.services-overview {
    padding-bottom: 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
}

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

.service-detail-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

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

.service-badge-large {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.service-detail-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-alt);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
    flex-shrink: 0;
}

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

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

.service-detail-title p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

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

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

.service-detail-body {
    padding: 1.5rem;
}

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

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

.service-includes h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

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

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

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--primary);
}

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

.benefit-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .benefit-item {
        flex: 1 1 calc(25% - 1.25rem);
    }
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

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

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

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.table-price {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.25rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    display: inline-block;
}

/* Contact Page Styles */
.contact-main {
    padding: 3rem 0;
}

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

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

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

.contact-card-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.contact-card p {
    color: var(--text);
}

.contact-card a {
    color: var(--primary);
}

.contact-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

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

.company-info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.company-details {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

.company-details h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

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

.company-details li {
    font-size: 0.9375rem;
}

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

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

.direction-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.direction-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.direction-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.contact-cta {
    background: var(--primary);
    color: #fff;
}

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

.contact-cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.contact-cta .btn-primary {
    background: #fff;
    color: var(--primary);
}

.contact-cta .btn-primary:hover {
    background: var(--bg-alt);
}

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

    .contact-info {
        flex: 0 0 320px;
    }

    .contact-details {
        flex: 1;
    }
}

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

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

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

.thank-you-icon svg {
    max-width: 120px;
}

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

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

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

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

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

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

.next-step .step-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    flex-shrink: 0;
}

.next-step .step-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

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

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

.popular-pages h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.page-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text);
    transition: box-shadow var(--transition);
}

.page-card:hover {
    box-shadow: var(--shadow-md);
    color: var(--text);
}

.page-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.page-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

/* Legal Pages */
.legal-content {
    padding: 3rem 0;
}

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

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

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

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.legal-section h3 {
    font-size: 1.0625rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text);
}

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

.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

.legal-section ul li {
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.legal-section a {
    color: var(--primary);
}

.info-box {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 1rem 0;
}

.info-box p {
    margin-bottom: 0.5rem;
}

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

.legal-table {
    margin: 1rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

.legal-table-header {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    font-weight: 600;
    font-size: 0.875rem;
}

.legal-table-cell {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.right-item {
    background: var(--bg-alt);
    padding: 1.25rem;
    border-radius: var(--radius);
}

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

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

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

/* Cookies Policy Table */
.cookie-category {
    margin: 1.5rem 0;
}

.cookie-category h3 {
    margin-bottom: 0.75rem;
}

.cookies-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 1rem 0;
}

.cookies-table-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
}

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

.cookies-table-row.header {
    background: var(--bg-alt);
    font-weight: 600;
}

.cookies-table-row span {
    flex: 1 1 33.333%;
    padding: 0.75rem;
    font-size: 0.875rem;
    min-width: 120px;
}

.cookie-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* About Page */
.story-section {
    padding: 3rem 0;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

    .story-content {
        flex: 1;
    }

    .story-content h2 {
        font-size: 2rem;
    }

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

/* Milestones */
.milestones-section {
    background: var(--bg-alt);
}

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

.milestone {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
}

.milestone:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.milestone-year {
    flex-shrink: 0;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius);
}

.milestone-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.milestone-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

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

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

.team-member p {
    font-size: 0.875rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .team-member {
        flex: 1 1 calc(25% - 1.25rem);
    }
}

/* Values Section */
.values-section {
    background: var(--bg-alt);
}

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

.value-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.value-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.value-block p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Achievements Section */
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.achievement-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.achievement-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

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

@media (min-width: 768px) {
    .achievement-card {
        flex: 1 1 calc(25% - 1.25rem);
    }
}

/* Approach Section */
.approach-section {
    background: var(--bg-alt);
}

.approach-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.approach-item h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.approach-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .approach-content h2 {
        font-size: 2rem;
    }
}

/* 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;
}
