/* CSS Variables & Theme Tokens */
:root {
    --bg-dark: #ffffff;
    --bg-darker: #f0f4f8;
    --bg-card: #ffffff;
    --border-color: #cbd5e1;
    --text-main: #0f172a;
    --text-muted: #334155;
    
    /* Clean, Trustworthy Corporate Blue for maximum legibility */
    --primary: #2563eb;
    --primary-hover: #1e40af;
    --primary-light: rgba(37, 99, 235, 0.1);
    
    --accent: #0ea5e9;
    --accent-light: rgba(14, 165, 233, 0.1);
    
    --success: #10b981;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-glass: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Headings: Outfit（英数字の洗練） + Noto Sans JP（日本語の安心感） */
    --font-heading: 'Outfit', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
    /* Body: Noto Sans JP を中心に最高品質の日本語フォントを優先 */
    --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: 0.05em;
    word-break: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.45;
    letter-spacing: 0.06em;
    font-weight: 700;
    word-break: keep-all;
    overflow-wrap: break-word;
}

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

.bg-darker {
    background-color: var(--bg-darker);
}

/* Ambient Background Blobs (Mesh Gradient Feel) */
.blob-gradient {
    position: fixed;
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}
.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, rgba(255,255,255,0) 70%);
}
.blob-2 {
    top: 20%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, rgba(255,255,255,0) 70%);
}
.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, rgba(255,255,255,0) 70%);
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-hover), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: var(--bg-dark);
}

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

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

.btn-line {
    background: #06c755;
    color: white;
}
.btn-line:hover {
    background: #05a546;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-inline: auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.07em;
    background: linear-gradient(to right, #0f172a, #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 2;
    letter-spacing: 0.04em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for header */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
    word-break: keep-all;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 2;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

.stat-unit {
    font-size: 1rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-glass-card {
    padding: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.chart-track {
    width: 100%;
    height: 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: visible;
    position: relative;
}

.chart-fill {
    height: 100%;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 0.5rem;
    justify-content: flex-end;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: left;
}

@keyframes growBar {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.chart-fill.general {
    background: linear-gradient(90deg, #4b5563, #6b7280);
}

.chart-fill.primary {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.chart-fill span {
    position: absolute;
    right: -10px;
    top: -28px;
    font-size: 0.75rem;
    background: var(--bg-dark);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.highlight-text {
    color: var(--primary-hover);
    font-weight: 700;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.solution-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(0, 0, 0, 0));
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.solution-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.solution-content p {
    color: var(--text-muted);
    max-width: 800px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Features Section */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-row.reverse .feature-visual {
    order: 2;
}
.feature-row.reverse .feature-text {
    order: 1;
}

.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.03) 0%, transparent 60%);
    z-index: 0;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.icon-wrapper.primary {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
}
.icon-wrapper.accent {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}
.icon-wrapper i {
    width: 36px;
    height: 36px;
}

.visual-text {
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    text-align: center;
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Flow Section */
.flow-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.flow-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: var(--border-color);
    z-index: 0;
}

.flow-step {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
    z-index: 1;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
}

.step-content {
    padding: 2rem;
}

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

.step-header i {
    color: var(--primary);
}

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

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

/* Pricing Section */
.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-hover);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.tax {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.pricing-body {
    padding: 3rem 2rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.list-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-main);
}

.pricing-list li i {
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-footer {
    padding: 2rem;
    background: rgba(0,0,0,0.03);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

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

.formula-box {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
}
.formula-box .highlight {
    color: var(--primary);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(255, 255, 255, 0.8), var(--bg-dark));
    backdrop-filter: blur(5px);
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-container > p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.cta-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card.featured {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
}

.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.cta-card.featured .cta-icon {
    background: var(--primary);
    color: var(--bg-dark);
}
.cta-card.line .cta-icon {
    background: #06c755;
    color: white;
}

.cta-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 2.7rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-group a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-row, .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-row.reverse .feature-visual {
        order: 1;
    }
    .feature-row.reverse .feature-text {
        order: 2;
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .br-pc {
        display: none !important;
    }
    .br-sp {
        display: block !important;
    }
    body {
        font-size: 15px;
        line-height: 1.9;
        letter-spacing: 0.04em;
    }
    p, li, td {
        font-size: 0.95rem;
        line-height: 1.9;
        letter-spacing: 0.03em;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.6;
        letter-spacing: 0.05em;
        word-break: keep-all;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .section-desc {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .feature-number {
        font-size: 3rem;
    }
    
    .glass-panel {
        padding: 2rem;
    }
    
    .staff-greeting {
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }
    
    .staff-greeting > div {
        min-width: 100% !important;
    }
    
    .staff-greeting img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .formula-box {
        font-size: 0.95rem;
    }
    
    .cta-container h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    .cta-container > p {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .company-table th, .company-table td {
        display: block;
        width: 100%;
        border-right: none;
    }
    .company-table th {
        border-bottom: none;
        padding-bottom: 0.5rem;
        background: transparent;
    }
    .company-table td {
        padding-top: 0;
        padding-bottom: 1.5rem;
    }
}

/* Company Table */
.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th, .company-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

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

.company-table th {
    width: 30%;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.04);
    border-right: 1px solid var(--border-color);
}

.company-table td {
    color: var(--text-muted);
}
