:root {
    --primary: #2563eb;
    --primary-light: #93c5fd;
    --primary-dark: #1d4ed8;
    --secondary: #0891b2;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;
    --shadow: 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: 8px;
    --radius-lg: 16px;
}

*, *::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);
    background: var(--bg);
}

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

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

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

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

/* 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;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    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-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

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

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

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

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

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

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

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

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

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

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

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

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

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    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 {
    width: 100%;
    max-width: 400px;
    height: auto;
}

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

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.legal-hero {
    padding: 3rem 0;
}

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

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

.philosophy-content {
    flex: 1.5;
}

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

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

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

.philosophy-visual svg {
    width: 200px;
    height: 200px;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
}

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

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

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

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

.service-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

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

.process-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

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

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

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

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

.process-steps.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
}

.process-steps.horizontal .process-step {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

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

.step-icon svg {
    width: 100%;
    height: 100%;
}

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

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.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);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar svg {
    width: 100%;
    height: 100%;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
}

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

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

.industries-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-weight: 500;
    transition: background 0.2s;
}

.industry-item:hover {
    background: var(--border);
}

.industry-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

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

.insights-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.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);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

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

.insight-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

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

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

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

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

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

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

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

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.trust-item svg {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--primary);
}

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

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

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

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

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

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

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

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

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--text);
}

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

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

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

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

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

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    cursor: pointer;
}

.cookie-option input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.option-info strong {
    font-size: 0.9375rem;
}

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

.modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

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

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

.story-content {
    flex: 1.5;
}

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

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

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

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

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

.timeline-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

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

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

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

.timeline-marker {
    position: absolute;
    left: -2rem;
    transform: translateX(-50%);
    width: 4rem;
    padding: 0.25rem 0.5rem;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius);
    text-align: center;
}

.timeline-content {
    padding-left: 3rem;
}

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

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

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

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

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

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

.value-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.team-card {
    flex: 1 1 calc(25% - 1.125rem);
    min-width: 220px;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-alt);
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

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

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

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

/* Approach Section */
.approach-section {
    padding: 5rem 0;
}

.approach-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.approach-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 3rem;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.approach-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.approach-item span {
    font-weight: 500;
}

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

.certifications-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.certification-item svg {
    width: 48px;
    height: 48px;
}

.certification-item span {
    font-weight: 600;
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 0;
}

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

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

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

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

.service-detail-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.service-detail-content {
    padding: 2rem;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

/* Pricing Note */
.pricing-note {
    padding: 3rem 0;
    background: var(--bg-alt);
}

.note-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.note-box svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary);
}

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

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

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
}

.comparison-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.comparison-table {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.comparison-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

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

.comparison-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.comparison-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.comparison-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.comparison-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

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

.comparison-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.comparison-features li:last-child {
    border-bottom: none;
}

.comparison-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comparison-features .included svg {
    color: var(--success);
}

.comparison-features .excluded {
    color: var(--text-light);
}

.comparison-features .excluded svg {
    color: var(--text-light);
}

.comparison-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

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

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

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

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

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

.contact-icon svg {
    width: 100%;
    height: 100%;
}

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

.contact-detail {
    font-size: 1.125rem;
    line-height: 1.8;
}

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

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

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

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

.sidebar-box {
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.sidebar-box.highlight {
    background: var(--primary);
    color: white;
}

.sidebar-box.highlight .btn {
    margin-top: 1rem;
    background: white;
    color: var(--primary);
    border-color: white;
}

.sidebar-box.highlight .btn:hover {
    background: var(--bg-alt);
}

.sidebar-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar-box p {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

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

.directions-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

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

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

.direction-icon svg {
    width: 100%;
    height: 100%;
}

.direction-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

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

.company-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

.info-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

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

.info-value {
    font-weight: 600;
}

/* Partner Note */
.partner-note {
    padding: 3rem 0;
    background: var(--bg-alt);
}

.partner-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
}

.partner-box svg {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.partner-content h3 {
    margin-bottom: 0.75rem;
}

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

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

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

.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;
}

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

.step-item .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

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

.quick-info-section {
    padding: 4rem 0;
    background: var(--bg-alt);
}

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

.quick-info-card {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.quick-info-card svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

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

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

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

.legal-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

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

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

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

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.cookie-table th {
    background: var(--bg-alt);
    font-weight: 600;
    font-size: 0.875rem;
}

.cookie-table td {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero .container,
    .philosophy-section .container,
    .story-grid,
    .approach-grid,
    .contact-grid {
        flex-direction: column;
    }

    .hero-visual,
    .philosophy-visual,
    .story-visual {
        order: -1;
    }

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

    .approach-list {
        padding-top: 0;
    }

    .contact-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-box {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 280px;
    }
}

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

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

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

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

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

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

    .hero {
        padding: 3rem 0;
    }

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

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .service-card,
    .testimonial-card,
    .insight-card,
    .value-card,
    .team-card,
    .comparison-card,
    .direction-card {
        flex: 1 1 100%;
    }

    .process-steps.horizontal .process-step {
        flex: 1 1 100%;
    }

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

    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 0.75rem;
    }

    .timeline-content {
        padding-left: 0;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }

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

    .sidebar-box {
        flex: 1 1 100%;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .stats-section {
        padding: 3rem 0;
    }

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

    .footer-grid {
        gap: 2rem;
    }

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