/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-900: #1e3a8a;
    --primary-800: #1e40af;
    --primary-700: #1d4ed8;
    --primary-600: #2563eb;
    --primary-500: #3b82f6;
    --primary-400: #60a5fa;
    --primary-300: #93c5fd;
    --primary-200: #bfdbfe;
    --primary-100: #dbeafe;
    --primary-50: #eff6ff;

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;

    --white: #ffffff;
    --black: #000000;

    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

    --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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --transition: 0.2s ease;
}

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

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

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

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--gray-900);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

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

    h2 {
        font-size: 2.25rem;
    }
}

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

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

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

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

.btn-secondary:hover {
    background-color: var(--primary-50);
    color: var(--primary-700);
}

.btn-text {
    background: transparent;
    color: var(--gray-600);
    padding: 0.5rem 1rem;
    border: none;
}

.btn-text:hover {
    color: var(--gray-900);
    background-color: var(--gray-100);
}

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

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

.nav {
    padding: 1rem 0;
}

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

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}

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

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
    background-color: var(--primary-50);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        gap: 0.5rem;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--gray-700);
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--gray-700);
    transition: all var(--transition);
}

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

.hamburger::after {
    top: 8px;
}

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

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

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

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
}

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

.hero-content {
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }
}

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

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
    text-align: center;
}

.page-intro {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.125rem;
    color: var(--gray-600);
}

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

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

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

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

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

.section-header.centered {
    text-align: center;
}

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

.section-header p {
    color: var(--gray-600);
    max-width: 600px;
}

.section-header.centered p {
    margin: 0 auto;
}

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

/* Philosophy Section */
.philosophy-section {
    background-color: var(--gray-50);
}

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

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

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

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

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

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

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

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

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

    .philosophy-content {
        flex: 1;
    }

    .philosophy-values {
        flex: 1;
    }
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    border-color: var(--primary-400);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-50) 100%);
}

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

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

.service-card p {
    color: var(--gray-600);
}

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

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

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

/* Process Section */
.process-section {
    background-color: var(--gray-50);
}

.process-section.light-bg {
    background-color: var(--primary-50);
}

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

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

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

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

.step-content p {
    color: var(--gray-600);
}

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

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

    .step-number {
        margin: 0 auto;
    }
}

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

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

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

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.process-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.process-connector {
    display: none;
}

@media (min-width: 768px) {
    .process-visual {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }

    .process-item {
        flex: 1;
        max-width: 180px;
    }

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

/* Testimonials */
.testimonials-section {
    background-color: var(--primary-800);
    color: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.testimonial p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-size: 0.9375rem;
    color: var(--primary-200);
}

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

    .testimonial {
        flex: 1;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    color: var(--white);
}

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

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

.stat-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.stat-block h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-block p {
    color: var(--primary-200);
}

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

    .stat-block {
        flex: 1;
    }
}

/* Industries Section */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.industry-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.industry-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

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

.industry-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

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

    .industry-item {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

/* Insights Section */
.insights-section {
    background-color: var(--gray-50);
}

.insights-wrapper {
    max-width: 800px;
}

.insights-content h2 {
    margin-bottom: 2rem;
}

.insight-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-block {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-500);
}

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

.insight-block p {
    color: var(--gray-600);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

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

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

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

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

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform var(--transition);
}

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

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

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

.faq-answer p {
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section.alt {
    background: var(--gray-100);
    color: var(--gray-900);
}

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

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

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

.cta-section.alt .cta-content p {
    color: var(--gray-600);
}

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

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

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

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

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Story Section */
.story-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

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

    .story-content,
    .story-visual {
        flex: 1;
    }
}

/* Milestones */
.milestones-section {
    background-color: var(--primary-50);
}

.milestones-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.milestone-year {
    flex-shrink: 0;
    width: 70px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-600);
}

.milestone-content {
    flex: 1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--primary-200);
}

.milestone:last-child .milestone-content {
    border-bottom: none;
    padding-bottom: 0;
}

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

.milestone-content p {
    color: var(--gray-600);
}

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

    .milestone {
        flex: 1 1 calc(50% - 0.75rem);
        flex-direction: column;
        gap: 0.5rem;
    }

    .milestone-content {
        border-bottom: none;
        border-left: 3px solid var(--primary-300);
        padding-left: 1rem;
        padding-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .milestone {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

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

.team-member {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

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

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

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

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

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

    .team-member {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

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

/* Values Section */
.values-section {
    background-color: var(--primary-800);
    color: var(--white);
}

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

.values-header h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.values-header p {
    color: var(--primary-200);
}

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

.value-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

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

.value-block h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.value-block p {
    color: var(--primary-200);
}

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

    .value-block {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

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

.achievement-card {
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.achievement-label {
    color: var(--gray-600);
    font-weight: 500;
}

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

    .achievement-card {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .achievement-card {
        flex: 1;
    }
}

/* Approach Section */
.approach-section {
    background-color: var(--gray-50);
}

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

.comparison-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-block {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.comparison-block.negative {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.comparison-block.positive {
    background: var(--primary-50);
    border: 2px solid var(--primary-400);
}

.comparison-block h3 {
    margin-bottom: 1rem;
}

.comparison-block ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.comparison-block li {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

.comparison-block.positive li {
    color: var(--gray-700);
}

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

    .comparison-block {
        flex: 1;
    }
}

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

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

/* Services Detailed */
.services-list-section {
    background-color: var(--gray-50);
}

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

.service-detailed-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-title-block h3 {
    margin-bottom: 0.25rem;
}

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

.service-detailed-card > p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

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

.feature-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
}

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

    .service-detailed-card {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

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

/* Premium Services */
.premium-services {
    background-color: var(--white);
}

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

.premium-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.premium-card.featured {
    border-color: var(--primary-500);
    border-width: 2px;
}

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

.premium-header {
    margin-bottom: 1rem;
}

.premium-header h3 {
    margin-bottom: 0.5rem;
}

.premium-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

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

.price-unit {
    color: var(--gray-500);
}

.premium-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.premium-features {
    list-style: none;
}

.premium-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

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

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

    .premium-card {
        flex: 1;
    }
}

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

.benefits-wrapper {
    max-width: 800px;
}

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

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

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

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.benefit-text p {
    color: var(--gray-600);
}

/* Contact Page */
.contact-main {
    background-color: var(--gray-50);
}

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

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

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

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

.info-content p {
    color: var(--gray-600);
}

.info-note {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.contact-details {
    flex: 1;
}

.details-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.details-card h2 {
    margin-bottom: 1rem;
}

.details-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.contact-topics h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.contact-topics ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.contact-topics li {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

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

    .contact-info,
    .contact-details {
        flex: 1;
    }
}

/* Directions Section */
.directions-section {
    background-color: var(--white);
}

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

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

.direction-block {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.direction-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
}

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

.direction-block p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

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

    .direction-block {
        flex: 1;
    }
}

/* Company Info Section */
.company-info-section {
    background-color: var(--gray-50);
}

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

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

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

.company-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.legal-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-info dt {
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 0.5rem;
}

.legal-info dd {
    color: var(--gray-600);
}

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

    .company-card {
        flex: 1;
    }
}

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

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

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

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

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

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

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

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

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

.step-item .step-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.step-item p {
    color: var(--gray-600);
}

.thank-you-actions p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

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

@media (min-width: 480px) {
    .action-buttons {
        flex-direction: row;
    }
}

/* Popular Content */
.popular-content {
    background-color: var(--gray-50);
}

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

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

.popular-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.popular-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.popular-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-600);
}

.link-arrow::after {
    content: ' →';
}

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

    .popular-card {
        flex: 1;
    }
}

/* Legal Pages */
.legal-hero {
    background: var(--gray-100);
    padding: 2.5rem 0;
    text-align: center;
}

.legal-update {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

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

.legal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-article {
    flex: 1;
    max-width: 800px;
}

.legal-intro {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.legal-article h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.legal-article p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-article ol {
    list-style: decimal;
}

.legal-article li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.legal-address {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 1rem 0;
}

.legal-address p {
    margin-bottom: 0.25rem;
}

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

.sidebar-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

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

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    margin-bottom: 0.5rem;
}

.sidebar-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

@media (min-width: 1024px) {
    .legal-wrapper {
        flex-direction: row;
    }

    .legal-sidebar {
        width: 280px;
        flex-shrink: 0;
    }
}

/* Legal Cards */
.legal-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.legal-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 1.25rem;
    border-left: 3px solid var(--primary-500);
}

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

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

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

    .legal-card {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

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

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

.cookie-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-900);
}

.cookie-table td {
    color: var(--gray-700);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1.5rem;
}

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

.footer-brand {
    max-width: 280px;
}

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

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

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

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

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

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

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

.footer-contact address {
    font-size: 0.9375rem;
}

.footer-contact p {
    margin-bottom: 0.25rem;
}

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

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

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

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

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

    .footer-links,
    .footer-contact {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        flex-wrap: nowrap;
    }

    .footer-brand {
        flex: 1 1 auto;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner[aria-hidden="false"] {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-content > p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .cookie-buttons {
        flex-direction: row;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

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

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.cookie-modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

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

.cookie-option {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

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

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

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: var(--radius-sm);
}

.cookie-option > p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .cookie-modal-buttons {
        flex-direction: row;
    }

    .cookie-modal-buttons .btn {
        flex: 1;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px;
    background: var(--primary-600);
    color: var(--white);
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
