:root {
    --primary: #2563eb;
    --primary-light: #dbeafe;
    --primary-dark: #1d4ed8;
    --secondary: #059669;
    --secondary-light: #d1fae5;
    --accent: #7c3aed;
    --accent-light: #ede9fe;
    --text: #1f2937;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --bg-alt: #f3f4f6;
    --border: #e5e7eb;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px 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;
}

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

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

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

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

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

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

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

.nav-menu {
    display: flex;
    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 var(--transition);
}

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

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

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

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

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

.btn-secondary:hover {
    background: #047857;
    color: white;
}

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

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

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

/* Sections */
section {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

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

h1, h2, h3, h4 {
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.25rem;
}

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

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

.hero-content {
    flex: 1;
}

.hero h1 {
    margin-bottom: 1.25rem;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
}

.hero-visual svg {
    width: 100%;
    max-width: 400px;
}

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

.page-hero-compact {
    padding: 3rem 0;
}

.page-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

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

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

.philosophy-content .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.philosophy-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.philosophy-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: var(--bg-alt);
    padding: 3rem 0;
}

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

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

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

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

/* Service Cards */
.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

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

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

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Services Highlight */
.services-highlight {
    background: var(--bg-light);
}

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

.industries-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.industries-text {
    flex: 1;
}

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

.industries-text p {
    color: var(--text-muted);
}

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

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

.industry-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

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

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

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

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

/* Benefits Section */
.benefits-section {
    background: var(--bg-light);
}

.benefits-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.benefits-visual {
    flex: 1;
}

.benefits-visual svg {
    max-width: 300px;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefits-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefits-list strong {
    font-size: 1.0625rem;
}

.benefits-list span {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.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: 500;
    color: var(--text);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

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

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

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

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

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.insight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
}

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

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

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

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

.cta-content .btn-primary:hover {
    background: var(--bg-light);
}

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

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

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

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

.footer-brand .logo-icon {
    color: white;
}

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

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

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

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

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

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

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

.footer-contact a {
    color: white;
}

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

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

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

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

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

.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: 1rem;
}

.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 {
    margin-bottom: 0.75rem;
}

.modal-content > p {
    color: var(--text-muted);
    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: 0.75rem;
    cursor: pointer;
}

.cookie-option input {
    margin-top: 0.25rem;
}

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

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

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

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

.story-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 1.25rem;
}

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

.story-visual {
    flex: 1;
}

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

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

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

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

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

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

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

/* Team Section */
.team-section {
    padding: 4rem 0;
}

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

.team-member {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

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

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

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

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

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

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

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-year {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
    width: 60px;
}

.timeline-content h3 {
    margin-bottom: 0.25rem;
}

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

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

.approach-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    margin-bottom: 1.25rem;
}

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

.approach-highlights {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.highlight-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Commitment Section */
.commitment-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.commitment-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.commitment-content h2 {
    margin-bottom: 1rem;
}

.commitment-content p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

/* Services Page */
.services-intro {
    padding: 2rem 0 0;
}

.services-intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.0625rem;
}

.services-list {
    padding: 3rem 0;
}

.service-block {
    margin-bottom: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-block-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.service-block-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.service-block-info {
    flex: 1;
    min-width: 200px;
}

.service-block-info h2 {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}

.service-tagline {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.service-price {
    text-align: right;
    min-width: 140px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

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

.price-unit {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-block-content {
    padding: 1.5rem;
}

.service-block-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

.service-features li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
}

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

/* Pricing Note */
.pricing-note {
    padding: 2rem 0;
}

.note-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--accent-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.note-card svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

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

/* Comparison Table */
.comparison-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-row {
    display: flex;
}

.comparison-header {
    background: var(--text);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.comparison-row:not(.comparison-header) .comparison-cell:first-child {
    text-align: left;
    font-weight: 500;
    flex: 1.5;
}

.comparison-cell svg {
    width: 24px;
    height: 24px;
}

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

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

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

.contact-block {
    display: flex;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.contact-details h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.contact-link {
    font-weight: 500;
}

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

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

.hours-note {
    font-size: 0.875rem;
    font-style: italic;
}

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

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

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

.info-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

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

/* Company Info Section */
.company-info-section {
    background: var(--bg-alt);
    padding: 3rem 0;
}

.company-info-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.company-info-card h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 200px;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

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

/* Contact Note Section */
.contact-note-section {
    padding: 3rem 0;
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.contact-note svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

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

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

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

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

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

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

.thank-you-text {
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
}

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

.thank-you-info h2 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.step-icon svg {
    width: 24px;
    height: 24px;
}

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

/* Meanwhile Section */
.meanwhile-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.meanwhile-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.meanwhile-card svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.meanwhile-card h3 {
    margin-bottom: 0.5rem;
}

.meanwhile-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

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

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

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

.legal-intro {
    font-size: 1.0625rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.legal-text h2 {
    font-size: 1.375rem;
    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 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.legal-text li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    list-style: disc;
}

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

.legal-address {
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin: 1rem 0;
    color: var(--text);
}

/* Rights Grid (GDPR page) */
.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-card {
    flex: 1;
    min-width: 250px;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.right-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

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

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

.cookie-row {
    display: flex;
}

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

.cookie-cell {
    flex: 1;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

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

.cookie-settings-button {
    margin: 1.5rem 0;
}

/* Hidden */
[hidden] {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container,
    .benefits-layout,
    .industries-layout,
    .story-layout,
    .approach-layout,
    .contact-layout {
        flex-direction: column;
    }

    .hero-visual,
    .benefits-visual,
    .story-visual {
        order: -1;
        text-align: center;
    }

    .hero-visual svg,
    .benefits-visual svg,
    .story-visual svg {
        max-width: 280px;
    }

    .comparison-row {
        flex-wrap: wrap;
    }

    .comparison-cell {
        flex: none;
        width: 25%;
    }

    .comparison-row:not(.comparison-header) .comparison-cell:first-child {
        width: 100%;
        text-align: center;
        background: var(--bg-light);
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

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

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .service-block-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

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

    .contact-sidebar {
        width: 100%;
    }

    .comparison-cell {
        width: 33.333%;
        font-size: 0.875rem;
        padding: 0.5rem;
    }

    .comparison-row:not(.comparison-header) .comparison-cell:first-child {
        width: 100%;
    }

    .cookie-row {
        flex-direction: column;
    }

    .cookie-header {
        display: none;
    }

    .cookie-cell {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-cell::before {
        content: attr(data-label);
        font-weight: 600;
    }

    .footer-grid {
        flex-direction: column;
    }
}

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

    .btn {
        width: 100%;
    }

    .thank-you-actions {
        flex-direction: column;
    }

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

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }
}
