/* ===================================
   BlueLamp - Optimized Production CSS
   =================================== */

/* CSS Custom Properties for Better Maintainability */
:root {
    /* Color Palette */
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #64748b;
    --secondary-hover: #475569;
    --text-color: #1e293b;
    --text-light: #94a3b8;
    --text-lighter: #cbd5e1;
    --text-lightest: #e2e8f0;
    --text-white: #f1f5f9;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-start: #6366f1;
    --gradient-mid: #8b5cf6;
    --gradient-end: #a78bfa;
    --dark-bg: #0f172a;
    --dark-bg-light: #1e293b;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-bg-dark: rgba(30, 41, 59, 0.6);
    
    /* Layout */
    --max-width: 1200px;
    --container-padding: 20px;
    --section-padding: 4rem;
    --section-padding-mobile: 3rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", 
                   "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    --line-height: 1.7;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 12px 40px rgba(99, 102, 241, 0.2);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus Styles for Accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

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

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

/* Global Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Base */
section {
    padding: var(--section-padding) 0;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

/* Dark Section Title Variant */
.how-it-works .section-title,
.cta-section .section-title {
    color: var(--text-lightest);
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-normal);
    position: relative;
}

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

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.header-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

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

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Problems Section - Enhanced with inline styles */
.problems {
    background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.problem-card:hover::before {
    opacity: 0.1;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.problem-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.solution-message {
    text-align: center;
}

.solution-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    position: relative;
}

.how-it-works::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(99, 102, 241, 0.03) 100px,
            rgba(99, 102, 241, 0.03) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(99, 102, 241, 0.03) 100px,
            rgba(99, 102, 241, 0.03) 101px
        );
    pointer-events: none;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-lightest);
}

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

/* Step Examples */
.step-example {
    margin-top: 1.5rem;
}

.example-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.chat-bubble {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: left;
    font-size: 0.95rem;
    position: relative;
    color: var(--text-lightest);
}

.chat-bubble::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(99, 102, 241, 0.2);
}

.step-visual {
    margin-top: 1rem;
}

.ai-process {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.process-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #a5b4fc;
    transition: all var(--transition-normal);
}

.process-item:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.arrow {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.step-result {
    margin-top: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-lightest);
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.ai-agents {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.ai-agents-text {
    font-size: 1.125rem;
    color: var(--text-color);
}

/* Benefits Section */
.benefits {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.benefit-value {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-label {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefit-desc {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* CTA Section - Enhanced with inline styles */
.cta-section {
    background: linear-gradient(180deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%);
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: var(--card-bg-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    color: var(--text-lightest);
}

.cta-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: var(--shadow-xl);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

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

.cta-features {
    list-style: none;
    margin-bottom: 2rem;
    color: var(--text-lighter);
}

.cta-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.cta-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-section a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        width: 100%;
    }
    
    .nav-list {
        justify-content: center;
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .problems-grid,
    .steps,
    .benefits-grid,
    .features-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-value {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: var(--section-padding-mobile) 0;
    }
    
    .problem-card,
    .benefit-card,
    .cta-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    /* Reset colors for print */
    * {
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    /* Hide unnecessary elements */
    .header,
    .hero-actions,
    .footer,
    .btn,
    .header-cta {
        display: none !important;
    }
    
    /* Ensure proper page breaks */
    section {
        page-break-inside: avoid;
    }
    
    .section-title {
        page-break-after: avoid;
    }
    
    /* Adjust typography for print */
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
        margin-top: 1em;
    }
    
    /* Show URLs for links */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
    
    /* Optimize images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Add borders to cards */
    .problem-card,
    .step,
    .benefit-card,
    .feature-item,
    .cta-card {
        border: 1px solid #ccc !important;
        margin-bottom: 1em;
    }
}

/* Performance Optimizations */
/* Use will-change for elements that animate frequently */
.btn,
.problem-card,
.step,
.benefit-card,
.feature-item,
.cta-card {
    will-change: transform;
}

/* Remove will-change after animation completes */
.btn:not(:hover),
.problem-card:not(:hover),
.step:not(:hover),
.benefit-card:not(:hover),
.feature-item:not(:hover),
.cta-card:not(:hover) {
    will-change: auto;
}

/* GPU Acceleration for smooth animations */
.hero::before,
.hero::after,
.benefits::before,
.how-it-works::before {
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize backdrop-filter performance */
@supports (backdrop-filter: blur(10px)) {
    .step,
    .cta-card {
        backdrop-filter: blur(10px);
    }
}

@supports not (backdrop-filter: blur(10px)) {
    .step,
    .cta-card {
        background: rgba(30, 41, 59, 0.9);
    }
}

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: var(--primary-color);
    }
    
    .hero-title,
    .benefit-value {
        -webkit-text-fill-color: currentColor;
        background: none;
    }
}

/* ===================================
   Company Page Styles
   =================================== */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--text-white);
    padding: var(--section-padding) 0 calc(var(--section-padding) / 2);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-hero .lead {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Company Info Section */
.company-info {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.company-table {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

/* Info Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
}

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

.info-table th {
    width: 30%;
    background: var(--light-gray);
    font-weight: 600;
    color: var(--text-color);
}

.info-table td {
    color: var(--secondary-color);
    line-height: 1.8;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* Business List */
.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    padding: 0.375rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.business-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Office Locations */
.office-locations {
    margin-top: 3rem;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.office-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.office-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.office-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.office-card address {
    font-style: normal;
    line-height: 1.8;
    color: var(--secondary-color);
}

.office-card .access {
    display: inline-block;
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: var(--section-padding-mobile) 0 calc(var(--section-padding-mobile) / 2);
    }
    
    .company-info {
        padding: var(--section-padding-mobile) 0;
    }
    
    .company-table {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .info-table th {
        width: 35%;
    }
    
    .office-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    .office-card h3 {
        font-size: 1.25rem;
    }
}