:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-secondary: #4f46e5;
    --color-accent: #f59e0b;
    --color-success: #10b981;
    --color-danger: #ef4444;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-lighter: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-bg-dark: #f3f4f6;
    --color-border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --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, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

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

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

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

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

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

.main-nav {
    padding: 16px 0;
}

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
}

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

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

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

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

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

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

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

    .nav-menu a {
        display: block;
        padding: 12px 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

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

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

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

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

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f5ff 0%, #e0e7ff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

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

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

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

    .hero-subtitle {
        max-width: 100%;
    }

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

.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f5ff 0%, #e0e7ff 100%);
    text-align: center;
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.section-tag {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.trust-indicators {
    padding: 60px 0;
    background: var(--color-bg);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

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

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

.philosophy-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.philosophy-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    margin-bottom: 20px;
}

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

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

@media (max-width: 768px) {
    .philosophy-section .container {
        flex-direction: column;
    }

    .philosophy-visual {
        max-width: 280px;
    }
}

.services-highlight {
    padding: 80px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    flex: 1 1 300px;
    max-width: 360px;
    transition: all var(--transition);
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
}

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

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.process-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.process-section.compact {
    padding: 60px 0;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 240px;
}

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

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

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

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

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

    .process-connector {
        transform: rotate(90deg);
        padding: 8px 0;
    }
}

.process-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.process-step-h {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

.process-step-h h3 {
    font-size: 1rem;
    margin: 12px 0 4px;
}

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

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 8px;
}

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

    .process-arrow {
        transform: rotate(90deg);
    }
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex: 1 1 300px;
    max-width: 380px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.author-name {
    font-weight: 600;
}

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

.industries-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.industries-content {
    text-align: center;
    margin-bottom: 40px;
}

.industries-content p {
    color: var(--color-text-light);
    margin-top: 12px;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg);
    padding: 16px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.knowledge-section {
    padding: 80px 0;
}

.knowledge-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.knowledge-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex: 1 1 280px;
    max-width: 360px;
}

.knowledge-icon {
    margin-bottom: 16px;
}

.knowledge-card h3 {
    margin-bottom: 12px;
}

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

.faq-section {
    padding: 80px 0;
    background: var(--color-bg);
}

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

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

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

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

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

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

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--color-text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.site-footer {
    background: var(--color-text);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

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

.footer-logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

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

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact {
    flex: 1;
    min-width: 200px;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-text);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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: 24px;
    flex-wrap: wrap;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

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

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

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

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

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

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

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

.cookie-modal-body {
    padding: 24px;
}

.cookie-option {
    margin-bottom: 20px;
}

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

.cookie-option-header {
    margin-bottom: 8px;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
}

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

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

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

.story-section {
    padding: 80px 0;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text .lead {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

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

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

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

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

.values-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.value-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex: 1 1 260px;
    max-width: 280px;
    text-align: center;
}

.value-icon {
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
}

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

.team-section {
    padding: 80px 0;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--color-text-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.team-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
}

.team-avatar {
    margin-bottom: 16px;
}

.team-card h3 {
    margin-bottom: 4px;
    font-size: 1.125rem;
}

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

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

.milestones-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

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

.timeline-item {
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

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

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
}

.timeline-year {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
}

.timeline-content {
    flex: 1;
    padding-top: 4px;
}

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

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

.certifications-section {
    padding: 80px 0;
}

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

.certifications-content h2 {
    margin-bottom: 20px;
}

.certifications-content > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-bg-alt);
    padding: 16px 20px;
    border-radius: var(--radius);
}

.services-intro {
    padding: 40px 0;
    background: var(--color-bg-alt);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-light);
}

.services-list-section {
    padding: 60px 0;
}

.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-border);
}

.category-header h2 {
    font-size: 1.5rem;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    gap: 24px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.0625rem;
    margin-bottom: 6px;
}

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

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

@media (max-width: 640px) {
    .service-item {
        flex-direction: column;
        gap: 12px;
    }
}

.pricing-info {
    padding: 60px 0;
    background: var(--color-bg-alt);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.pricing-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex: 1 1 260px;
    max-width: 320px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.pricing-icon {
    margin-bottom: 16px;
}

.pricing-card h3 {
    margin-bottom: 12px;
}

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

.comparison-section {
    padding: 80px 0;
}

.comparison-table {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.comparison-column {
    flex: 1 1 340px;
    max-width: 400px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.comparison-column h3 {
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.comparison-column.repair {
    border-top: 4px solid var(--color-success);
}

.comparison-column.replace {
    border-top: 4px solid var(--color-danger);
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.comparison-column li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-column li span {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.contact-main {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.contact-icon {
    margin-bottom: 16px;
}

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

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

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

.contact-note {
    font-size: 0.875rem;
    margin-top: 8px;
}

.contact-details-section {
    flex: 1.5;
    min-width: 320px;
}

.company-info-block {
    margin-bottom: 40px;
}

.company-info-block h2 {
    margin-bottom: 16px;
}

.company-info-block p {
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.directions-block h3 {
    margin-bottom: 12px;
}

.directions-block > p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.directions-list {
    list-style: none;
    margin-bottom: 16px;
}

.directions-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-text-light);
}

.coverage-section {
    padding: 60px 0;
    background: var(--color-bg-alt);
}

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.coverage-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    flex: 1 1 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.coverage-card.primary {
    border: 2px solid var(--color-success);
}

.coverage-icon {
    margin-bottom: 16px;
}

.coverage-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

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

.company-details {
    padding: 60px 0;
}

.company-details-content h2 {
    margin-bottom: 24px;
}

.company-data-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.company-data-item {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    background: var(--color-bg-alt);
    padding: 16px 20px;
    border-radius: var(--radius);
}

.data-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.data-value {
    font-weight: 500;
}

.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-content h1 {
    margin-bottom: 20px;
}

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

.thank-you-content > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

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

.what-next-section {
    padding: 60px 0;
    background: var(--color-bg-alt);
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.next-step {
    flex: 1 1 260px;
    max-width: 300px;
    text-align: center;
}

.next-step .step-icon {
    margin-bottom: 16px;
}

.next-step h3 {
    margin-bottom: 8px;
}

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

.legal-content {
    padding: 60px 0;
}

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

.legal-text h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.legal-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.legal-text ul {
    color: var(--color-text-light);
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-text li {
    margin-bottom: 8px;
}

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

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
}

.rights-list {
    margin: 32px 0;
}

.right-item {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 16px;
}

.right-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.right-item p {
    margin-bottom: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

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

@media (max-width: 640px) {
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}
