/* 
 * manavigate Inc. Official Website
 * Theme: "Modern Cyber IDE" - Stylish & Cool
 * Fixes: Spacing, Visibility, Logo, Font Size (+Larger Content, Balanced Headings), Header Overlap
 * Addition: Secret Society Animation & Effects
 */

:root {
    /* Brand Colors (Neon Adjusted for Dark Mode) */
    --primary-blue: #3b82f6; /* Bright Blue */
    --accent-blue: #00d4ff; /* Cyan */
    --primary-green: #10b981; /* Emerald */
    --accent-teal: #2dd4bf; /* Teal */
    
    /* IDE Theme Colors (Modern Dark) */
    --bg-app: #0f172a; /* Deep Slate Navy */
    --bg-glass: rgba(15, 23, 42, 0.85); /* Darker Glass */
    --bg-panel: rgba(30, 41, 59, 0.6);
    --border-color: rgba(148, 163, 184, 0.15);
    
    /* Text */
    --text-main: #f8fafc;
    --text-muted: #cbd5e1; /* Lighter for better readability */
    
    /* Syntax Highlighting (Neon) */
    --syntax-const: #c084fc; /* Purple */
    --syntax-string: #4ade80; /* Green */
    --syntax-func: #60a5fa; /* Blue */
    --syntax-tag: #f472b6; /* Pink */
    --syntax-comment: #94a3b8; /* Slate */
    
    /* Fonts */
    --font-mono: "Fira Code", "Roboto Mono", "Noto Sans JP", monospace;
    --font-sans: "Inter", system-ui, sans-serif;
}

/* Base Setup */
html {
    font-size: 20px; /* Global Scale Up (125%) - Keeps content large */
    cursor: none; /* Hide default cursor for Secret Society feel */
}

a, button, .btn, .service-card, .case-item, input, textarea {
    cursor: none !important; /* Force custom cursor everywhere */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-mono); 
}

/* Background Animation */
@keyframes gridMove {
    0% { background-position: 0 0, 0 0, 15% 50%, 85% 30%; }
    100% { background-position: 50px 50px, 50px 50px, 15% 50%, 85% 30%; }
}

body {
    background-color: var(--bg-app);
    color: var(--text-main);
    line-height: 2; 
    overflow-x: hidden;
    /* Grid Background + Ambient Neons */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    background-attachment: local, local, fixed, fixed;
    /* Animate Grid */
    animation: gridMove 2s linear infinite;
    padding-bottom: 40px;
    font-size: 1rem; /* 20px base */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 8px; height: 8px;
    background-color: var(--accent-teal);
    box-shadow: 0 0 10px var(--accent-teal);
}

.cursor-outline {
    width: 40px; height: 40px;
    border: 1px dashed var(--accent-blue);
    animation: rotateCursor 4s linear infinite;
}

@keyframes rotateCursor { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Interactive Hover States */
body:has(a:hover) .cursor-outline,
body:has(button:hover) .cursor-outline,
body:has(.service-card:hover) .cursor-outline {
    width: 60px; height: 60px;
    border-color: var(--primary-green);
    background: rgba(16, 185, 129, 0.1);
    animation: rotateCursor 1s linear infinite;
}

/* Text Scramble Dud */
.dud { color: var(--syntax-tag); opacity: 0.7; }

/* Rest of styles preserved */
a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1em; }
p { margin-bottom: 1.5em; color: var(--text-muted); font-size: 1.1rem; }

/* Utilities */
.gradient-text {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.section-padding { padding: 150px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }

/* Header */
header {
    position: fixed;
    top: 25px; left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    height: 70px;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.header-content { display: flex; justify-content: space-between; width: 100%; align-items: center; gap: 14px; }

.logo {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}
.logo span { white-space: nowrap; }
.logo::before { content: 'import'; color: var(--syntax-const); font-size: 0.9em; }
.logo img { display: block; height: 35px; width: auto; filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5)); }

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-links a {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--text-muted);
    position: relative;
    transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(255,255,255,0.08);
    color: var(--accent-blue);
}

.nav-links a:not(.btn)::after {
    content: '';
}

.nav-links a.btn {
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 14px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}
.nav-links a.btn::after { content: ''; }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(30, 41, 59, 0.7);
    color: var(--text-main);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    line-height: 0;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.2s ease;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 10px;
    background: var(--accent-blue);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

body.mobile-nav-open .nav-toggle {
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.25);
}

body.mobile-nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mobile-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.mobile-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 150px;
}

#particle-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    opacity: 0.5;
}

.hero-content {
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 60px;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.1s; /* For 3D tilt effect */
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--text-main);
}

.hero h1::before {
    content: "const Vision =";
    display: block;
    font-size: 1rem;
    color: var(--syntax-const);
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero h1::after {
    content: "_";
    color: var(--accent-teal);
    animation: blink 1s infinite steps(2);
    display: inline-block;
    margin-left: 5px;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero p {
    color: var(--syntax-string);
    font-size: 1.2rem;
    margin-bottom: 50px;
    line-height: 1.8;
}
.hero p::before { content: '// '; opacity: 0.6; }

.hero-trust {
    border-top: 1px dashed var(--border-color);
    padding-top: 30px;
    margin-top: 30px;
}
.trust-logos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 0.05em;
    gap: 10px;
    width: min(100%, 460px);
    margin: 0 auto;
}

.trust-company {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.55);
    color: var(--text-main);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.trust-badge {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    flex: 0 0 12px;
}

.trust-badge--official {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
}

.trust-badge--gold {
    background: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.22);
}

/* Titles */
.section-title {
    text-align: center;
    color: var(--text-main);
    font-size: 2rem;
    margin-bottom: 100px;
}
.section-title::before { content: '<'; color: var(--syntax-tag); margin-right: 10px; opacity: 0.8; }
.section-title::after { content: ' />'; color: var(--syntax-tag); margin-left: 10px; opacity: 0.8; }

/* Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 60px 40px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    width: 10px; height: 10px;
    background: #ff5f56;
    border-radius: 50%;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
}

.service-card:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: var(--accent-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card h3 {
    color: var(--syntax-func);
    font-size: 1.3rem; 
    margin-top: 20px;
    margin-bottom: 20px;
}
.service-card h3::after { content: '()'; color: var(--text-muted); opacity: 0.7; }

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

/* Page Header */
.page-header {
    background: var(--bg-panel);
    padding: 220px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}
.page-title::before { content: '# '; color: var(--accent-teal); opacity: 0.7; }

/* Case Study */
.case-detail-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 150px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.case-detail-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 5px;
    background: var(--accent-blue);
    z-index: 1;
}

.case-detail-card:nth-of-type(even)::before {
    background: var(--primary-green);
}

.case-disclosure {
    margin-bottom: 60px;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.55);
}

.case-disclosure h3 {
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 1.1rem;
}

.case-company-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.case-disclaimer {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.case-header {
    padding: 60px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.6);
}

.case-number {
    font-size: 3rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    opacity: 0.2;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.case-client {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.case-body { padding: 60px; }

.case-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.case-content h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    display: flex; align-items: center; gap: 10px;
}
.case-content h4::before { content: '#'; color: var(--syntax-const); }

.timeline-list-card {
    background: rgba(30, 41, 59, 0.42);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.timeline-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-blue), var(--primary-green));
}

.timeline-list-single {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-list-single li {
    position: relative;
    margin: 0;
    padding: 12px 14px 12px 34px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.55);
}

.timeline-list-single li::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 14px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2);
}

/* Case Grid */
.case-grid { gap: 50px; }

.case-item {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    transition: 0.3s;
}
.case-item:hover { border-color: var(--primary-green); }

.case-content { padding: 50px; }
.case-content p { font-size: 1.1rem; }

.case-tags { margin-bottom: 30px; display: flex; gap: 15px; flex-wrap: wrap; }
.tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Concept Graphic - Visualized */
.concept-graphic {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px;
    background: var(--bg-panel);
    border-radius: 12px;
    gap: 40px;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.graphic-before, .graphic-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

@keyframes jitter {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    25% { transform: translate(2px, 2px) rotate(1deg); }
    50% { transform: translate(-2px, -2px) rotate(-1deg); opacity: 1; }
    75% { transform: translate(2px, -2px) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
}

@keyframes stream {
    0% { transform: translateX(-5px); color: var(--syntax-comment); }
    50% { transform: translateX(5px); color: var(--accent-blue); }
    100% { transform: translateX(-5px); color: var(--syntax-comment); }
}

@keyframes stabilize {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--accent-teal)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px var(--accent-teal)); }
}

.graphic-before i {
    animation: jitter 0.5s infinite linear;
    color: var(--syntax-comment);
    font-size: 4rem;
}

.graphic-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.graphic-arrow i {
    animation: stream 1.5s infinite;
    font-size: 2rem;
    margin-bottom: 5px;
}

.graphic-after i {
    animation: stabilize 3s infinite ease-in-out;
    color: var(--accent-teal);
    font-size: 4.5rem;
}

/* Company */
.director-profile-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px dashed var(--border-color);
}
.director-img-lg {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}
.director-info-col h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--syntax-func); }
.director-info-col .role { font-size: 1rem; color: var(--text-muted); opacity: 0.8; margin-left: 10px; }
.director-info-col .en-name { color: var(--syntax-comment); font-size: 0.9rem; margin-bottom: 20px; font-family: var(--font-mono); }
.director-info-col { flex: 1; min-width: 0; }

.company-info-table-wrapper {
    background: var(--bg-panel);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border-color);
}
.company-info-table { width: 100%; border-collapse: collapse; }
.company-info-table th, .company-info-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.company-info-table th {
    color: var(--accent-teal);
    width: 30%;
    font-weight: normal;
}
.company-info-table td { color: var(--text-main); }

/* Message Card */
.message-card {
    background: var(--bg-panel);
    padding: 60px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.message-card::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    width: 10px; height: 10px;
    background: #ff5f56;
    border-radius: 50%;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
}

/* Service Detail */
.service-detail-item {
    padding: 50px;
    background: var(--bg-panel);
    border-radius: 16px;
    margin-bottom: 100px;
    border: 1px solid var(--border-color);
}
.price-info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: var(--primary-blue);
    padding: 20px;
    border-radius: 0 4px 4px 0;
}

/* Footer & Status Bar */
footer {
    padding: 80px 0 60px;
    background: #0b0f19;
    border-top: 1px solid var(--border-color);
    margin-top: 100px;
    cursor: auto !important; /* Allow cursor in footer? */
}
.footer-col h4 { color: var(--syntax-tag); font-size: 1.1rem; }
.footer-col li { font-size: 1rem; }

.status-bar-fixed {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    height: 30px;
    background: #1e293b; 
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    z-index: 2000;
    justify-content: space-between;
}
.status-item { display: flex; align-items: center; gap: 10px; }

/* Responsive */
@media screen and (max-width: 900px) {
    html { font-size: 16px; }
    body { cursor: auto; padding-bottom: 0; }
    .container { padding: 0 20px; }
    .section-padding { padding: 64px 0; }
    .section-title { font-size: 1.5rem; margin-bottom: 48px; }
    .page-header { padding: 140px 0 56px; }

    header {
        top: 12px;
        width: calc(100% - 16px);
        height: 60px;
        padding: 0 12px;
    }

    .header-content { justify-content: space-between; }
    .nav-toggle { display: inline-flex; }
    body.mobile-nav-open { overflow: hidden; }
    .nav-links {
        position: fixed;
        top: 84px;
        left: 8px;
        right: 8px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(14px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 1200;
    }
    body.mobile-nav-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links a {
        width: 100%;
        padding: 11px 12px;
        border-radius: 8px;
    }
    .nav-links a.btn {
        margin-top: 4px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 32px;
    }
    .hero-content { padding: 28px 20px; }
    .hero h1 { font-size: 1.5rem; line-height: 1.5; margin-bottom: 24px; }
    .hero p { font-size: 1rem; margin-bottom: 24px; }
    .hero-trust { margin-top: 20px; padding-top: 18px; }
    .trust-logos {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 14px;
        font-size: 0.85rem;
        line-height: 1.4;
        width: 100%;
    }
    .trust-company {
        width: 100%;
        justify-content: flex-start;
        min-height: 34px;
        font-size: 0.82rem;
    }

    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 28px 20px; }

    .case-disclosure { margin-bottom: 32px; padding: 18px; }
    .case-disclosure h3 { font-size: 1rem; margin-bottom: 12px; }
    .case-disclaimer { font-size: 0.88rem; }
    .case-detail-card { margin-bottom: 64px; }
    .case-header, .case-body, .case-content { padding: 24px; }
    .case-content-grid { grid-template-columns: 1fr; gap: 24px; }
    .timeline-list-card { padding: 18px; }
    .timeline-list-single li { font-size: 0.9rem; padding: 10px 12px 10px 30px; }
    .timeline-list-single li::before { top: 18px; left: 12px; }

    .concept-graphic { padding: 24px; gap: 20px; }
    .graphic-before i, .graphic-after i { font-size: 3rem; }
    .graphic-arrow i { font-size: 1.5rem; }

    .director-profile-row { flex-direction: column; gap: 20px; margin-bottom: 48px; }
    .company-info-table-wrapper, .message-card, .service-detail-item { padding: 24px; }
    .service-detail-item { margin-bottom: 48px; }

    footer { margin-top: 64px; padding: 56px 0 40px; }
    .status-bar-fixed { display: none; }

    .cursor-dot, .cursor-outline { display: none; } /* Hide cursor on mobile */
}
