:root {
    --primary-color: #2c5282;
    --secondary-color: #3182ce;
    --accent-color: #4299e1;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-accent: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col {
    padding: 15px;
    flex: 1;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

@media (max-width: 768px) {
    .col-md-4,
    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* 導航列 */
.navbar {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

.brand-logo {
    display: block;
    width: auto;
    height: 44px;
}

.brand-logo--header {
    height: 44px;
}

.brand-logo--footer {
    height: 52px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand:hover {
    opacity: 0.92;
}

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

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin-left: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-medium);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav li {
        margin: 0;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
    }
}

/* 主要內容 */
main {
    margin-top: 70px;
}

/* 區塊 */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* 首頁橫幅 */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 按鈕 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 150px;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

.btn-secondary {
    background-color: var(--bg-accent);
    color: var(--text-primary);
}

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

/* 卡片 */
.card {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

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

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

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

/* 表單 */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--bg-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* 頁尾 */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e0;
}

/* 動畫 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* 回到頂部按鈕 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* 通知訊息 */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transform: translateX(400px);
    transition: var(--transition);
    z-index: 1001;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: #48bb78;
}

.notification.error {
    background-color: #f56565;
}

.notification.warning {
    background-color: #ed8936;
}

/* 載入動畫 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .card {
        padding: 1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* 列表樣式 */
ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* 連結樣式 */
a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* 表格樣式 */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

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

.table th {
    background-color: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.table tr:hover {
    background-color: var(--bg-accent);
}

/* 進度條 */
.progress {
    width: 100%;
    height: 8px;
    background-color: var(--bg-accent);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

/* 徽章 */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background-color: var(--primary-color);
    border-radius: 12px;
}

.badge-secondary {
    background-color: var(--text-light);
}

.badge-success {
    background-color: #48bb78;
}

.badge-warning {
    background-color: #ed8936;
}

.badge-error {
    background-color: #f56565;
}

/* 語系切換 */
.lang-switch {
  display:flex;
  gap:8px;
  align-items:center;
}
.lang-btn{
  font: inherit;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn[aria-pressed="true"]{
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44,82,130,0.12);
}
.lang-btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-light); }

:root {
    --primary-color: #2c5282;
    --secondary-color: #3182ce;
    --accent-color: #4299e1;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-accent: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col {
    padding: 15px;
    flex: 1;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

@media (max-width: 768px) {
    .col-md-4,
    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* 導航列 */
.navbar {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

.brand-logo {
    display: block;
    width: auto;
    height: 44px;
}

.brand-logo--header {
    height: 44px;
}

.brand-logo--footer {
    height: 52px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand:hover {
    opacity: 0.92;
}

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

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin-left: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-medium);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav li {
        margin: 0;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
    }
}

/* 主要內容 */
main {
    margin-top: 70px;
}

/* 區塊 */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* 首頁橫幅 */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 按鈕 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 150px;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

.btn-secondary {
    background-color: var(--bg-accent);
    color: var(--text-primary);
}

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

/* 卡片 */
.card {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

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

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

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

/* 表單 */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--bg-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* 頁尾 */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e0;
}

/* 動畫 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* 回到頂部按鈕 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* 通知訊息 */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transform: translateX(400px);
    transition: var(--transition);
    z-index: 1001;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: #48bb78;
}

.notification.error {
    background-color: #f56565;
}

.notification.warning {
    background-color: #ed8936;
}

/* 載入動畫 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .card {
        padding: 1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* 列表樣式 */
ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* 連結樣式 */
a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* 表格樣式 */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

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

.table th {
    background-color: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.table tr:hover {
    background-color: var(--bg-accent);
}

/* 進度條 */
.progress {
    width: 100%;
    height: 8px;
    background-color: var(--bg-accent);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

/* 徽章 */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background-color: var(--primary-color);
    border-radius: 12px;
}

.badge-secondary {
    background-color: var(--text-light);
}

.badge-success {
    background-color: #48bb78;
}

.badge-warning {
    background-color: #ed8936;
}

.badge-error {
    background-color: #f56565;
}

/* === 康盟聯：團隊組織圖 / 服務項目補強（2026-02） === */
    /* === 團隊組織圖（About） === */
.org-wrap{
background:#f8f9fa;
border:1px solid #e6e8eb;
border-radius:14px;
padding: 18px 16px;
overflow:hidden;
}
.org-svg{ width:100%; height:auto; display:block; }
.org-line{ stroke:#2c5aa0; stroke-width:3; opacity:.35; }
.org-node{ fill:#ffffff; stroke:#2c5aa0; stroke-width:2; }
.org-node.primary{ fill:#2c5aa0; stroke:#2c5aa0; }
.org-role{ font: 600 18px 'Microsoft JhengHei','Noto Sans TC',sans-serif; fill:#2c5aa0; }
.org-name{ font: 700 22px 'Microsoft JhengHei','Noto Sans TC',sans-serif; fill:#2c5aa0; }
.org-node.primary + .org-role{ fill:#ffffff; }
.org-footnote{ font: 400 16px 'Microsoft JhengHei','Noto Sans TC',sans-serif; fill:#718096; }
/* SVG 文字色（primary 節點） */
.org-node.primary ~ text{ fill:#ffffff; }
.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
}
.team-card{
background:#ffffff;
border:1px solid #e2e8f0;
border-radius:14px;
padding: 1.25rem 1.25rem 1.1rem;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
}
.team-head{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom: .25rem; }
.team-role{ color:#2c5aa0; font-weight:800; }
.team-name{ color:#111827; font-weight:800; }
.team-card ul{ margin-top:.65rem; color:#666; line-height:1.85; padding-left: 1.2rem; }
.team-card li{ margin-bottom:.4rem; }
/* === 公司服務項目（Products） === */
.svc-grid{
display:grid;
grid-template-columns: 1fr;
gap: 1rem;
}
.svc-item{
background:#ffffff;
border:1px solid #e2e8f0;
border-radius:14px;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
overflow:hidden;
}
.svc-item summary{
list-style:none;
cursor:pointer;
padding: 1rem 1.25rem;
font-weight:800;
color:#2c5aa0;
display:flex;
align-items:center;
gap: .75rem;
}
.svc-item summary::-webkit-details-marker{ display:none; }
.svc-item summary i{ width: 22px; text-align:center; }
.svc-body{
border-top:1px solid #eef2f7;
padding: 1rem 1.25rem 1.1rem;
color:#666;
line-height:1.9;
}
.svc-body ul{ padding-left: 1.2rem; }
.svc-body ul ul{ margin-top:.35rem; }

/* === i18n 版本：SVG 組織圖（orgchart / oc-* class）=== */
.orgchart-wrap{
    background:#f8f9fa;
    border:1px solid #e6e8eb;
    border-radius:14px;
    padding: 18px 16px;
    overflow:hidden;
}
.orgchart-svg{ width:100%; height:auto; display:block; }
.oc-line{ stroke:#2c5aa0; stroke-width:3; opacity:.35; }
.oc-rect{ fill:#2c5aa0; stroke:#2c5aa0; stroke-width:2; filter:url(#ocShadow); }
.oc-title{ font: 700 18px 'Microsoft JhengHei','Noto Sans TC',sans-serif; fill:#ffffff; }
.oc-name{ font: 800 22px 'Microsoft JhengHei','Noto Sans TC',sans-serif; fill:#ffffff; }


/* ===== Services Carousel (carousel-container style) ===== */
.services-carousel{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 320px;
  background: #0f1b2d;
}
.services-carousel .carousel-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  padding: 28px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-carousel .carousel-slide.active{ opacity: 1; }

.services-carousel .carousel-card{
  width: 100%;
  max-width: 920px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.services-carousel .carousel-card h3{
  margin: 0 0 12px 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.35;
}
.services-carousel .carousel-card ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.92);
}
.services-carousel .carousel-card li{
  margin: 8px 0;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}
.services-carousel .home-nav{
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}
.services-carousel .home-btn{
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}
.services-carousel .home-btn:hover{ transform: scale(1.04); background: rgba(0,0,0,.35); }
.services-carousel .home-btn:active{ transform: scale(.98); }

@media (max-width: 768px){
  .services-carousel{ min-height: 360px; }
  .services-carousel .carousel-slide{ padding: 18px 12px; }
  .services-carousel .carousel-card{ padding: 18px 14px; }
}


/* === Services Carousel: Hero-style slides (matches main hero aesthetic) === */
.carousel-container.services-carousel { position: relative; overflow: hidden; }
.services-hero-track { display: flex; transition: transform .45s ease; will-change: transform; }
.services-hero-slide {
  flex: 0 0 100%;
  min-height: 332px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 24px;
  background: linear-gradient(135deg, rgba(77,107,151,1) 0%, rgba(50,81,126,1) 100%);
}
.services-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-hero-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.94);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}
.services-hero-title {
  color: #fff;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: .4px;
  margin: 0 0 16px 0;
}
.services-hero-subtitle {
  color: rgba(255,255,255,.94);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.75;
  margin: 0 0 18px 0;
}
.services-hero-case {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px 0;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.services-hero-case-label {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.services-hero-case-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.services-hero-cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  background: #fff;
  color: #1f2d3d;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8, 26, 55, .16);
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}
.services-hero-cta:hover { transform: translateY(-1px); opacity: .95; box-shadow: 0 14px 28px rgba(8, 26, 55, .2); }

}

/* === Services hero slide typography (prevent EN overflow) === */
.services-hero-inner { padding: 0 12px; }
.services-hero-title { max-width: 22ch; margin-left:auto; margin-right:auto; }
.services-hero-subtitle {
  max-width: 68ch;
  margin-left:auto;
  margin-right:auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.services-hero-case {
  max-width: min(90vw, 760px);
  margin-left: auto;
  margin-right: auto;
}

/* Keep arrows above content */
.carousel-container.services-carousel .carousel-arrow { z-index: 3; }

/* === Services page layout === */
.services-page-hero .hero-content { max-width: 980px; margin: 0 auto; text-align:center; }
.services-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}
.services-toc {
  position: sticky;
  top: 90px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  padding: 14px 14px;
}
.services-toc ul { list-style: none; padding: 0; margin: 0; }
.services-toc a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #183153;
  font-weight: 700;
}
.services-toc a:hover, .services-toc a.active { background: rgba(77,107,151,.12); }

.services-section-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  padding: 18px 18px;
  margin-bottom: 18px;
}
.services-section-card h3 { margin: 0 0 10px 0; font-size: 22px; color: #183153; }
.services-section-card ul { margin: 0; padding-left: 18px; line-height: 1.85; color: #2b3a4a; }

@media (max-width: 980px){
  .services-page-layout { grid-template-columns: 1fr; }
  .services-toc { position: relative; top: 0; }
}

/* === Services page: single category view === */
.services-single-wrap{
  max-width: 980px;
  margin: 0 auto;
}
.services-single-controls{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.services-single-label{
  font-weight: 800;
  color: #183153;
}
.services-single-select{
  min-width: min(520px, 92vw);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  font-weight: 700;
  color: #183153;
}
@media (max-width: 640px){
  .services-single-controls{ flex-direction: column; align-items: stretch; }
  .services-single-select{ width: 100%; min-width: 0; }
}

/* === Services page: pure single view === */
.services-single-wrap { padding-top: 6px; }

/* === Carousel controls === */
.carousel-container { position: relative; overflow: hidden; }
.carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.18);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}
.carousel-arrow.prev{ left: 14px; }
.carousel-arrow.next{ right: 14px; }
.carousel-arrow:hover{ background: rgba(0,0,0,.26); }

.carousel-indicators{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.carousel-indicators button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
}
.carousel-indicators button.active{ background: rgba(255,255,255,.9); }

/* === Index Services section: only blue carousel === */
#services #servicesCarousel{
  margin-top: 18px;
}




/* horizontal bar */
.orgchart-children::before{
  content:"";
  position:absolute;
  top:-16px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(77,107,151,.25);
  border-radius: 999px;
}

.orgchart-node--child{
  padding: 14px 12px 12px;
}

.orgchart-node--child .orgchart-role{
  font-size: 14px;
}
.orgchart-node--child .orgchart-name{
  font-size: 16px;
}

/* small vertical connector on each child */
.orgchart-node--child::before{
  content:"";
  position:absolute;
  top:-16px;
  left:50%;
  transform: translateX(-50%);
  width: 2px;
  height: 16px;
  background: rgba(77,107,151,.25);
}

@media (max-width: 1024px){
  .orgchart-children{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .orgchart-children::before{ left: 12%; right: 12%; }
}
@media (max-width: 640px){
  .orgchart-children{ grid-template-columns: 1fr; }
  .orgchart-children::before{ display:none; }
  .orgchart-node--child::before{ display:none; }
}

/* === Organization Chart (Enterprise Tree) === */
.orgchart-wrap{
  display: grid;
  place-items: center;
  padding: 6px 0 2px;
}
.orgchart-canvas{
  width: 100%;
  max-width: 1080px;
  position: relative;
  padding: 18px 12px 10px;
}
.orgchart-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orgline{
  stroke: rgba(77,107,151,.28);
  stroke-width: 2;
  stroke-linecap: round;
}
.orgline-strong{
  stroke: rgba(77,107,151,.38);
  stroke-width: 2.5;
}
.orgdot{
  fill: rgba(77,107,151,.35);
}

.orgchart-root{
  width: min(760px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(0,0,0,.10);
  border: 1px solid rgba(10,20,40,.06);
  padding: 28px 24px 22px;
  text-align: center;
}
.orgchart-avatar{
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #eef3fb, #d7e1f2);
  margin: 0 auto 14px;
  border: 1px solid rgba(10,20,40,.08);
}
.orgchart-role{
  font-weight: 900;
  color: #183153;
  font-size: 16px;
}
.orgchart-name{
  color: #2f5fa3;
  font-weight: 900;
  font-size: 22px;
  margin-top: 4px;
}
.orgchart-desc{
  margin-top: 10px;
  color: #2b3a4a;
  line-height: 1.8;
  font-size: 14px;
}

.orgchart-children-grid{
  margin-top: 64px; /* leave room for lines */
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.orgchart-child{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  border: 1px solid rgba(10,20,40,.06);
  padding: 16px 14px;
  text-align: center;
  min-height: 72px;
  display: grid;
  place-items: center;
  position: relative;
}
.orgchart-child-role{
  font-weight: 900;
  color: #183153;
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 1024px){
  .orgchart-children-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 58px; }
}
@media (max-width: 640px){
  .orgchart-children-grid{ grid-template-columns: 1fr; margin-top: 44px; }
  .orgchart-root{ padding: 24px 18px 18px; }
  .orgchart-avatar{ width: 118px; height: 118px; }
}

/* Product page - enterprise standard template */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.product-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(135deg, #f8fbff 0%, #edf5ff 45%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
}

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

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.product-hero-copy,
.product-summary-card,
.product-section-card,
.product-side-panel {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(49, 130, 206, 0.12);
    box-shadow: 0 18px 40px rgba(44, 82, 130, 0.08);
    border-radius: 20px;
}

.product-hero-copy {
    padding: 2.2rem;
}

.product-hero-tag,
.featured-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    background: rgba(66, 153, 225, 0.12);
}

.product-hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin: 1rem 0 0.8rem;
}

.product-hero-subtitle {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-hero-overview,
#productOverviewBody,
#featuredDesc,
#stickyContactText,
.product-summary-note {
    color: var(--text-secondary);
}

.product-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.75rem;
}

.product-summary-card {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    align-content: start;
}

.product-summary-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.product-summary-item strong {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-top: 0.35rem;
}

.product-summary-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-summary-note {
    font-size: 0.95rem;
    line-height: 1.7;
}

.product-detail-section {
    padding-top: 2.5rem;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.72fr);
    gap: 1.5rem;
    align-items: start;
}

.product-main-column {
    display: grid;
    gap: 1.5rem;
}

.product-section-card,
.product-side-panel {
    padding: 1.75rem;
}

.product-section-card h2,
.featured-product-card h2,
.product-side-panel h3 {
    font-size: 1.45rem;
    margin: 0.9rem 0 1rem;
}

.feature-grid,
.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card,
.deliverable-card,
.gallery-card {
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 1.15rem;
    box-shadow: var(--shadow-light);
}

.feature-card {
    position: relative;
    padding-left: 3.3rem;
}

.feature-card::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1.15rem;
    top: 1.05rem;
    color: var(--secondary-color);
}

.deliverable-card {
    padding-left: 3.3rem;
    position: relative;
}

.deliverable-card::before {
    content: '\f0ae';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1.15rem;
    top: 1.05rem;
    color: var(--primary-color);
}

.usecase-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.usecase-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #f5f9ff;
    border: 1px solid rgba(49, 130, 206, 0.18);
    color: var(--text-primary);
    font-weight: 600;
}


.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.case-study-card {
    border-radius: 22px;
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.case-study-image {
    aspect-ratio: 16 / 9;
    background: #eef4f8;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-body {
    padding: 1.15rem 1.15rem 1.2rem;
}

.case-study-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.case-study-label::before {
    content: '\f0eb';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
}

.case-study-card h3 {
    margin: 0.95rem 0 0.7rem;
    font-size: 1.12rem;
    line-height: 1.5;
}

.case-study-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.85;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.case-study-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f5f9ff;
    border: 1px solid rgba(49, 130, 206, 0.16);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.usecase-chip::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
}

.featured-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.feature-grid--compact {
    margin-top: 1rem;
}

.product-gallery-shell {
    margin-top: 1.25rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(145deg, #dfefff 0%, #f8fbff 58%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(66,153,225,0.24), transparent 42%),
                linear-gradient(160deg, rgba(44,82,130,0.08), transparent 52%);
}

.gallery-card span,
.gallery-card strong {
    position: relative;
    z-index: 1;
}

.gallery-card span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery-card strong {
    margin-top: 0.35rem;
    font-size: 1.05rem;
}

.product-side-column {
    position: sticky;
    top: 92px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

@media (max-width: 992px) {
    .product-hero-grid,
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-side-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 6rem 0 3rem;
    }

    .product-hero-copy,
    .product-summary-card,
    .product-section-card,
    .product-side-panel {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .feature-grid,
    .deliverable-grid,
    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-summary-item strong {
        font-size: 1.6rem;
    }
}


.gallery-card--image{padding:0;overflow:hidden;background:#fff}
.gallery-image-wrap{background:#f8fbfd;aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;border-bottom:1px solid rgba(15,23,42,.08)}
.gallery-image-wrap img{max-width:100%;max-height:100%;display:block;object-fit:contain}
.gallery-card--image span,.gallery-card--image strong{display:block;padding:0 18px}
.gallery-card--image span{padding-top:16px}
.gallery-card--image strong{padding-bottom:18px}


/* ===== v7 homepage refinement ===== */
.hero{padding:76px 0 44px; background:linear-gradient(180deg,#f7fbfb 0%,#eff7f6 100%);}
.hero::before{background:radial-gradient(circle at 18% 18%, rgba(0,138,124,.10), transparent 34%), radial-gradient(circle at 82% 24%, rgba(0,88,102,.08), transparent 28%);}
.hero-shell{display:grid; grid-template-columns:minmax(0,1.1fr) minmax(320px,0.9fr); gap:34px; align-items:center;}
.hero-copy{max-width:640px;}
.hero-eyebrow{display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:999px; background:rgba(0,138,124,.10); color:#0d6c63; font-size:.9rem; font-weight:700; letter-spacing:.04em; margin-bottom:18px;}
.hero-tags{display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 4px;}
.hero-tag{display:inline-flex; padding:10px 14px; border-radius:999px; background:#fff; border:1px solid rgba(0,102,95,.14); box-shadow:0 10px 24px rgba(0,0,0,.05); color:#184b48; font-size:.95rem; font-weight:600;}
.hero-visual{display:flex; justify-content:center;}
.hero-product-card{width:min(100%,460px); background:#fff; border:1px solid rgba(0,102,95,.12); border-radius:26px; box-shadow:0 24px 48px rgba(11,43,53,.12); overflow:hidden;}
.hero-product-media{background:linear-gradient(180deg,#e9f5f4 0%,#f7fbfb 100%); padding:18px 18px 0;}
.hero-product-media img{display:block; width:100%; height:280px; object-fit:cover; object-position:center; border-radius:18px;}
.hero-product-body{padding:22px 22px 24px;}
.hero-product-label{font-size:.82rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:#008a7c; margin-bottom:10px;}
.hero-product-title{margin:0 0 10px; font-size:1.42rem; line-height:1.35; color:#16323a;}
.hero-product-desc{margin:0; color:#5c6e74; line-height:1.7;}
.hero-product-chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:18px;}
.hero-product-chips span{display:inline-flex; padding:8px 12px; border-radius:999px; background:#eff7f6; color:#1a5b57; font-size:.9rem; font-weight:600;}
.orgchart-wrap{margin-top:12px; background:linear-gradient(180deg,#ffffff 0%,#f8fbfb 100%); border:1px solid rgba(0,102,95,.10); border-radius:28px; box-shadow:0 16px 36px rgba(11,43,53,.08); padding:24px 18px 12px;}
.orgchart-root{background:linear-gradient(135deg,#0c7b72 0%,#0f8a80 100%); color:#fff; box-shadow:0 18px 36px rgba(4,94,86,.24);}
.orgchart-avatar{background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.28);}
.orgchart-role,.orgchart-name,.orgchart-desc{color:#fff;}
.orgchart-child{border:1px solid rgba(0,102,95,.14); box-shadow:0 14px 30px rgba(11,43,53,.08); min-height:92px; display:flex; align-items:center; justify-content:center;}
.orgchart-child-role{font-weight:700; line-height:1.5;}
@media (max-width: 992px){.hero-shell{grid-template-columns:1fr; gap:28px;} .hero-copy{max-width:none;} .hero-visual{justify-content:flex-start;}}
@media (max-width: 768px){.hero{padding:72px 0 40px;} .hero-product-media img{height:220px;} .hero-tags{gap:8px;} .hero-tag{font-size:.88rem; padding:8px 12px;} .hero-product-body{padding:18px;} .orgchart-wrap{padding:18px 12px 6px;}}


/* ===== v7.1 hero + organization fixes ===== */
.hero{position:relative;}
.hero::before{content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 18% 18%, rgba(0,138,124,.10), transparent 34%), radial-gradient(circle at 82% 24%, rgba(0,88,102,.08), transparent 28%);}
.hero-shell,.hero-copy,.hero-visual{position:relative; z-index:1;}
.hero-copy h1{color:#16323a; line-height:1.22; margin-bottom:1.1rem; text-shadow:none;}
.hero-copy p{color:#52666d; opacity:1; max-width:700px;}
.hero .hero-buttons{justify-content:flex-start;}
.hero .btn{position:relative; z-index:2; cursor:pointer;}
.hero .btn-outline{background:#ffffff; color:#0c6c63; border-color:#0c6c63; box-shadow:0 12px 24px rgba(11,43,53,.08);}
.hero .btn-outline:hover{background:#0c6c63; color:#ffffff; border-color:#0c6c63;}
.hero .btn-secondary{background:#0c6c63; color:#ffffff; border-color:#0c6c63; box-shadow:0 12px 24px rgba(11,43,53,.08);}
.hero .btn-secondary:hover{background:#09564f; border-color:#09564f; color:#ffffff;}
.orgchart-wrap{padding:28px 22px 18px;}
.orgchart-root{max-width:460px; margin-left:auto; margin-right:auto;}
.orgchart-name{font-size:1.08rem; font-weight:700;}
.orgchart-desc{font-size:.98rem; line-height:1.65; opacity:.96;}
.orgchart-children-grid{grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:72px;}
.orgchart-child{min-height:188px; display:block; padding:20px 18px; text-align:left; border-radius:20px; background:#fff;}
.orgchart-child-role{font-size:1.04rem; color:#16323a; margin-bottom:6px;}
.orgchart-child-name{font-size:.98rem; font-weight:700; color:#0c6c63; margin-bottom:10px;}
.orgchart-child-desc{font-size:.92rem; line-height:1.65; color:#5a6d73;}
@media (max-width: 992px){.orgchart-children-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 768px){.hero-copy h1{font-size:2.35rem;} .hero-copy p{font-size:1.05rem;} .hero .hero-buttons{justify-content:center;} .orgchart-wrap{padding:20px 14px 10px;} .orgchart-children-grid{grid-template-columns:1fr; margin-top:52px;} .orgchart-child{min-height:auto;}}


/* v7.2 adjustments */
.hero-buttons .btn:only-child{min-width:160px;}
.orgchart-root{padding-top:28px;}
.orgchart-root .orgchart-name{margin-top:8px;}
.orgchart-avatar{display:none !important;}


/* v7.3 org chart */
.orgchart-wrap{padding:28px 22px 24px;background:linear-gradient(180deg,#ffffff 0%,#f8fbfb 100%);border:1px solid rgba(0,102,95,.10);border-radius:28px;box-shadow:0 16px 36px rgba(11,43,53,.08)}
.orgchart-v2{position:relative}
.orgchart-row{position:relative;display:grid;gap:18px;justify-content:center}
.orgchart-row-root{grid-template-columns:minmax(320px,380px);margin-bottom:34px}
.orgchart-row-l2{grid-template-columns:repeat(2,minmax(260px,360px));margin-top:10px}
.orgchart-row-l3{grid-template-columns:repeat(5,minmax(180px,1fr));margin-top:22px}
.orgchart-row-assistant{grid-template-columns:minmax(260px,360px);margin-top:22px}
.orgchart-card{position:relative;background:#fff;border:1px solid rgba(0,102,95,.14);border-radius:22px;box-shadow:0 14px 30px rgba(11,43,53,.08);padding:22px 18px;min-height:176px;text-align:left}
.orgchart-card-root{min-height:320px;text-align:center;padding:26px 22px 24px}
.orgchart-card-role{font-size:1.08rem;font-weight:800;color:#16323a;line-height:1.45;margin-bottom:8px}
.orgchart-card-name{font-size:1.04rem;font-weight:800;color:#0c6c63;line-height:1.4;margin-bottom:10px}
.orgchart-card-desc{font-size:.93rem;line-height:1.7;color:#5a6d73}
.orgchart-leader-photo{width:136px;height:136px;border-radius:50%;object-fit:cover;display:block;margin:0 auto 16px;border:4px solid #edf7f5;box-shadow:0 8px 22px rgba(11,43,53,.12)}
.orgchart-row-l2.has-connectors::before{content:"";position:absolute;left:50%;top:-34px;transform:translateX(-50%);width:2px;height:26px;background:#a5bcc7}
.orgchart-row-l2.has-connectors::after{content:"";position:absolute;left:18%;right:18%;top:-8px;height:2px;background:#a5bcc7}
.orgchart-row-l2.has-connectors .orgchart-card::before{content:"";position:absolute;left:50%;top:-26px;transform:translateX(-50%);width:2px;height:26px;background:#a5bcc7}
.orgchart-row-l3.has-connectors::before{content:"";position:absolute;left:50%;top:-24px;transform:translateX(-50%);width:2px;height:18px;background:#a5bcc7}
.orgchart-row-l3.has-connectors::after{content:"";position:absolute;left:10%;right:10%;top:-6px;height:2px;background:#a5bcc7}
.orgchart-row-l3.has-connectors .orgchart-card::before{content:"";position:absolute;left:50%;top:-18px;transform:translateX(-50%);width:2px;height:18px;background:#a5bcc7}
.orgchart-row-assistant::before{content:"";position:absolute;left:50%;top:-24px;transform:translateX(-50%);width:2px;height:18px;background:#a5bcc7}
@media (max-width:1200px){.orgchart-row-l3{grid-template-columns:repeat(3,minmax(220px,1fr))}}
@media (max-width:992px){.orgchart-row-l2{grid-template-columns:1fr}.orgchart-row-l2.has-connectors::after{left:50%;right:auto;width:2px;height:10px;top:-8px;background:#a5bcc7}.orgchart-row-l3{grid-template-columns:repeat(2,minmax(220px,1fr))}.orgchart-row-l3.has-connectors::after{left:14%;right:14%}}
@media (max-width:768px){.orgchart-wrap{padding:20px 14px 18px}.orgchart-row-root{grid-template-columns:1fr}.orgchart-row-l2,.orgchart-row-l3,.orgchart-row-assistant{grid-template-columns:1fr}.orgchart-card-root{min-height:auto}.orgchart-card{min-height:auto}.orgchart-row-l2.has-connectors::after,.orgchart-row-l3.has-connectors::after{display:none}.orgchart-row-l2.has-connectors .orgchart-card::before,.orgchart-row-l3.has-connectors .orgchart-card::before,.orgchart-row-assistant::before,.orgchart-row-l2.has-connectors::before,.orgchart-row-l3.has-connectors::before{display:none}}


/* v7.4 org chart layout */
.orgchart-wrap{padding:28px 24px 30px;background:linear-gradient(180deg,#ffffff 0%,#f8fbfb 100%);border:1px solid rgba(0,102,95,.10);border-radius:28px;box-shadow:0 16px 36px rgba(11,43,53,.08)}
.orgchart-tree{position:relative}
.orgchart-root-slot{display:flex;justify-content:center}
.orgchart-card{background:#fff;border:1px solid rgba(0,102,95,.14);border-radius:22px;box-shadow:0 14px 30px rgba(11,43,53,.08);padding:20px 18px}
.orgchart-card-top{max-width:420px;text-align:center}
.orgchart-card-manager{min-height:132px}
.orgchart-card-report{min-height:112px}
.orgchart-card-role{font-size:1.12rem;font-weight:800;color:#16323a;line-height:1.45;margin-bottom:8px}
.orgchart-card-name{font-size:1.02rem;font-weight:800;color:#0c6c63;line-height:1.4;margin-bottom:10px}
.orgchart-card-desc{font-size:.93rem;line-height:1.68;color:#5a6d73}
.orgchart-leader-photo{width:120px;height:120px;border-radius:50%;object-fit:cover;display:block;margin:0 auto 14px;border:4px solid #edf7f5;box-shadow:0 8px 22px rgba(11,43,53,.12)}
.orgchart-top-branches{position:relative;height:78px;margin:0 auto 2px;max-width:980px}
.orgchart-top-branches::before{content:'';position:absolute;left:50%;top:0;transform:translateX(-50%);width:2px;height:30px;background:#8fb1d6}
.orgchart-top-branches::after{content:'';position:absolute;left:14%;right:14%;top:30px;height:2px;background:#8fb1d6}
.orgchart-side-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;position:relative}
.orgchart-side{display:grid;grid-template-columns:200px minmax(220px,1fr);column-gap:28px;align-items:start;position:relative}
.orgchart-manager-slot{position:relative}
.orgchart-manager-slot::before{content:'';position:absolute;left:50%;top:-48px;transform:translateX(-50%);width:2px;height:48px;background:#8fb1d6}
.orgchart-reports-slot{position:relative;display:flex;flex-direction:column;gap:18px;padding-left:20px}
.orgchart-reports-slot::before{content:'';position:absolute;left:0;top:30px;bottom:30px;width:2px;background:#8fb1d6}
.orgchart-reports-slot .orgchart-card{position:relative}
.orgchart-reports-slot .orgchart-card::before{content:'';position:absolute;left:-20px;top:50%;transform:translateY(-50%);width:20px;height:2px;background:#8fb1d6}
.orgchart-side-right .orgchart-reports-slot{max-width:320px}
@media (max-width: 1100px){.orgchart-side-grid{gap:36px}.orgchart-side{grid-template-columns:180px minmax(200px,1fr);column-gap:18px}}
@media (max-width: 860px){.orgchart-top-branches{display:none}.orgchart-side-grid{grid-template-columns:1fr;gap:28px}.orgchart-side{grid-template-columns:1fr;gap:18px}.orgchart-manager-slot::before,.orgchart-reports-slot::before,.orgchart-reports-slot .orgchart-card::before{display:none}.orgchart-reports-slot{padding-left:0}}

/* v7.4.1 org connector fixes */
.orgchart-top-branches{max-width:980px}
.orgchart-top-branches::after{
  left:100px;
  right:auto;
  width:calc(50% + 36px);
}
.orgchart-manager-slot::after{
  content:'';
  position:absolute;
  top:50%;
  right:-24px;
  transform:translateY(-50%);
  width:24px;
  height:2px;
  background:#8fb1d6;
}
.orgchart-reports-slot::before{
  top:50%;
  bottom:56px;
}
.orgchart-reports-slot .orgchart-card::before{
  left:-24px;
  width:24px;
}
.orgchart-side-right .orgchart-reports-slot{max-width:340px}

@media (max-width: 1100px){
  .orgchart-top-branches::after{
    left:90px;
    width:calc(50% + 18px);
  }
  .orgchart-manager-slot::after{right:-18px;width:18px}
  .orgchart-reports-slot .orgchart-card::before{left:-18px;width:18px}
}

@media (max-width: 860px){
  .orgchart-manager-slot::after{display:none}
}


/* v7.5 org chart: precise SVG connectors */
.orgchart-tree--v75{position:relative;padding-top:8px;}
.orgchart-svg-lines{position:absolute;inset:0;overflow:visible;pointer-events:none;z-index:0;}
.orgchart-svg-line{stroke:#9fb8d3;stroke-width:2;stroke-linecap:square;shape-rendering:geometricPrecision;}
.orgchart-tree--v75 .orgchart-root-slot,
.orgchart-tree--v75 .orgchart-side-grid,
.orgchart-tree--v75 .orgchart-side,
.orgchart-tree--v75 .orgchart-manager-slot,
.orgchart-tree--v75 .orgchart-reports-slot{position:relative;z-index:1;}
.orgchart-tree--v75 .orgchart-side-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:72px;margin-top:74px;align-items:start;}
.orgchart-tree--v75 .orgchart-side{display:grid;grid-template-columns:220px minmax(220px,1fr);column-gap:28px;align-items:start;}
.orgchart-tree--v75 .orgchart-reports-slot{display:flex;flex-direction:column;gap:18px;padding-left:20px;}
.orgchart-tree--v75 .orgchart-card{position:relative;background:#fff;border:1px solid rgba(0,102,95,.14);border-radius:22px;box-shadow:0 14px 30px rgba(11,43,53,.08);padding:20px 18px;}
.orgchart-tree--v75 .orgchart-card-top{max-width:420px;text-align:center;}
.orgchart-tree--v75 .orgchart-card-manager{min-height:148px;}
.orgchart-tree--v75 .orgchart-card-report{min-height:112px;}
.orgchart-tree--v75 .orgchart-top-branches,
.orgchart-tree--v75 .orgchart-manager-slot::before,
.orgchart-tree--v75 .orgchart-manager-slot::after,
.orgchart-tree--v75 .orgchart-reports-slot::before,
.orgchart-tree--v75 .orgchart-reports-slot .orgchart-card::before{display:none !important;}
@media (max-width:1100px){
  .orgchart-tree--v75 .orgchart-side-grid{gap:38px;}
  .orgchart-tree--v75 .orgchart-side{grid-template-columns:200px minmax(200px,1fr);column-gap:20px;}
}
@media (max-width:860px){
  .orgchart-tree--v75 .orgchart-svg-lines{display:none;}
  .orgchart-tree--v75 .orgchart-side-grid{grid-template-columns:1fr;gap:28px;margin-top:28px;}
  .orgchart-tree--v75 .orgchart-side{grid-template-columns:1fr;gap:18px;}
  .orgchart-tree--v75 .orgchart-reports-slot{padding-left:0;}
}


.hero-product-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.hero-product-cta {
    min-width: 140px;
}


/* product v7.7b refinement */
.product-hero {
    padding: 6.2rem 0 3.2rem;
}

.product-hero-copy,
.product-section-card,
.product-side-panel {
    box-shadow: 0 12px 28px rgba(44, 82, 130, 0.06);
}

.section-kicker {
    font-size: 0.82rem;
    padding: 0.32rem 0.78rem;
}

.product-section-card h2,
.featured-product-card h2,
.product-side-panel h3 {
    margin: 0.8rem 0 0.95rem;
}

.product-side-panel {
    position: sticky;
    top: 104px;
}

#productOverviewBody {
    line-height: 1.9;
}

.feature-card,
.deliverable-card {
    min-height: 74px;
}

@media (max-width: 991px) {
    .product-side-panel {
        position: static;
        top: auto;
    }
}

/* v7.7d nav spacing / balance tuning */
.navbar-container {
    padding: 0 28px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-nav {
    align-items: center;
    gap: 26px;
}

.navbar-nav li {
    margin-left: 0;
    display: flex;
    align-items: center;
    height: 70px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    height: 70px;
    padding: 0 2px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-link::after {
    bottom: 18px;
}

.lang-switch {
    margin-left: 6px;
    gap: 10px;
}

.lang-btn {
    min-width: 52px;
    height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .navbar-container {
        padding: 0 20px;
    }

    .navbar-nav {
        gap: 20px;
    }

    .lang-btn {
        min-width: 48px;
        padding: 0 14px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        gap: 0;
        align-items: stretch;
    }

    .navbar-nav li {
        height: auto;
        display: block;
    }

    .nav-link {
        display: flex;
        justify-content: center;
        height: auto;
        padding: 1rem;
    }

    .nav-link::after {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .lang-switch {
        justify-content: center;
        margin: 0;
        padding: 0.5rem 0 0;
    }
}

@media (max-width: 900px) {
  .case-study-grid { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
  .services-hero-slide {
    min-height: 300px;
    padding: 42px 18px;
  }
  .services-hero-title {
    font-size: clamp(28px, 8vw, 38px);
  }
  .services-hero-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }
  .services-hero-case {
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .services-hero-case-title {
    font-size: 14px;
  }
}




/* === Home services carousel: v7.9 professional redesign === */
#services{
  background: linear-gradient(180deg, #f7f9fc 0%, #f2f5f9 100%);
}
#services .section-title{
  margin-bottom: 24px;
}
#services #servicesCarousel{
  margin-top: 0;
}
.services-carousel{
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 10px;
}
.services-hero-track{
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}
.services-hero-slide{
  min-width: 100%;
  padding: 6px 0 34px;
  box-sizing: border-box;
}
.services-hero-inner{
  width: 100%;
  margin: 0 auto;
}
.services-hero-shell{
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(34, 65, 108, .10);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(24,49,83,.08);
  padding: 38px 44px 34px;
}
.services-hero-shell::before{
  content:'';
  position:absolute;
  inset:0 auto 0 0;
  width: 4px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, #4870a3 0%, #6fb0a3 100%);
}
.services-hero-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-width:0;
}
.services-hero-title{
  margin: 0 0 14px;
  color: #183153;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
  letter-spacing: -.025em;
  max-width: 18ch;
}
.services-hero-subtitle{
  margin: 0;
  color: #58687c;
  font-size: 1.03rem;
  line-height: 1.9;
  max-width: 66ch;
}
.services-hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 20px;
}
.services-hero-chip{
  display:inline-flex;
  align-items:center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f8fbfe;
  border: 1px solid rgba(72,112,163,.14);
  color: #294563;
  font-size: .91rem;
  font-weight: 700;
}
.services-hero-case-inline{
  margin: 22px 0 0;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 12px;
  color: #35506e;
}
.services-hero-case-label{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: #2f5fa3;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}
.services-hero-case-title{
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
  color: #183153;
}
.services-hero-actions{
  margin-top: 24px;
}
.services-hero-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 132px;
  padding: 13px 24px;
  border-radius: 14px;
  background: #355b90;
  color: #fff;
  text-decoration:none;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(53,91,144,.16);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.services-hero-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(53,91,144,.20);
  filter: brightness(1.02);
}
.carousel-container.services-carousel .carousel-arrow{
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(71,102,150,.12);
  background: rgba(255,255,255,.94);
  color: #355b90;
  box-shadow: 0 8px 20px rgba(24,49,83,.08);
}
.carousel-container.services-carousel .carousel-arrow:hover{
  background: #ffffff;
}
.carousel-container.services-carousel .carousel-arrow.prev{ left: -2px; }
.carousel-container.services-carousel .carousel-arrow.next{ right: -2px; }
.carousel-container.services-carousel .carousel-indicators{
  bottom: 8px;
}
.carousel-container.services-carousel .carousel-indicators button{
  width: 8px;
  height: 8px;
  background: rgba(53,91,144,.20);
}
.carousel-container.services-carousel .carousel-indicators button.active{
  background: #355b90;
}

@media (max-width: 900px){
  .services-carousel{
    padding: 0 8px;
  }
  .services-hero-shell{
    padding: 30px 26px 30px;
  }
  .services-hero-title{
    max-width: none;
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
  .services-hero-subtitle{
    max-width: none;
  }
}

@media (max-width: 768px) {
  .services-hero-slide{
    padding: 4px 0 34px;
  }
  .services-hero-shell{
    padding: 24px 20px 26px;
    border-radius: 18px;
  }
  .services-hero-shell::before{
    border-radius: 18px 0 0 18px;
  }
  .services-hero-title{
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 12px;
  }
  .services-hero-subtitle{
    font-size: .98rem;
    line-height: 1.8;
  }
  .services-hero-chip{
    font-size: .86rem;
    padding: 8px 12px;
  }
  .services-hero-case-inline{
    gap: 10px;
  }
  .services-hero-case-title{
    font-size: .96rem;
  }
  .carousel-container.services-carousel .carousel-arrow{
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 56px;
  }
}



/* ===== v7.9s final homepage/contact refinements ===== */
.services-carousel{
  width:min(100%, 1080px);
  padding:0 12px;
  background:transparent;
  border-radius:0;
  min-height:auto;
}
.services-hero-slide{
  min-height:auto;
  background:transparent;
  padding:6px 56px 34px;
  text-align:left;
}
.services-hero-inner{
  max-width:none;
  width:100%;
  padding:0;
  align-items:stretch;
}
.services-hero-shell{
  width:100%;
  min-height:330px;
  display:flex;
  align-items:center;
}
.carousel-container.services-carousel .carousel-arrow.prev{ left: 12px; }
.carousel-container.services-carousel .carousel-arrow.next{ right: 12px; }

.hero-copy,
.hero-copy h1,
.hero-copy p{
  text-align:left;
}
.hero-copy p{
  margin-left:0;
  margin-right:0;
}
.hero-tags{ justify-content:flex-start; }

.contact-note{
  display:block;
  margin-top:8px;
  color:var(--text-light);
  font-size:.92rem;
  line-height:1.65;
}
.contact-phone-link{
  color:inherit;
  text-decoration:none;
}
.contact-phone-link:hover{
  text-decoration:underline;
}

@media (max-width: 768px){
  .services-carousel{ padding:0 6px; }
  .services-hero-slide{ padding:4px 0 34px; }
  .services-hero-shell{ min-height:auto; }
  .carousel-container.services-carousel .carousel-arrow.prev{ left: 0; }
  .carousel-container.services-carousel .carousel-arrow.next{ right: 0; }
}


/* ===== v7.9t typography / footer / services refinements ===== */
body,
button,
input,
select,
textarea {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", "Heiti TC", "Segoe UI", sans-serif;
}

/* Make the services carousel read as a full-width content card, not a framed banner */
.services-carousel {
  width: min(100%, 1120px);
  padding: 0 36px;
  background: transparent;
  border-radius: 0;
  min-height: auto;
  overflow: visible;
}
.services-hero-slide {
  background: transparent;
  padding: 6px 0 34px;
}
.services-hero-shell {
  width: 100%;
  min-height: 332px;
  align-items: stretch;
}
.services-hero-copy {
  width: 100%;
  min-height: 258px;
}
.services-hero-subtitle {
  text-align: left;
}
.services-hero-actions {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}
.carousel-container.services-carousel .carousel-arrow.prev { left: -18px; }
.carousel-container.services-carousel .carousel-arrow.next { right: -18px; }

.footer .footer-address,
.footer .footer-phone,
.footer .footer-note {
  margin-top: 0.35rem;
}
.footer .footer-note {
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  line-height: 1.7;
}
.footer .footer-phone a,
.footer .footer-address a {
  color: inherit;
  text-decoration: none;
}
.footer .footer-phone a:hover,
.footer .footer-address a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .services-carousel {
    padding: 0 6px;
  }
  .services-hero-shell {
    min-height: auto;
  }
  .services-hero-copy {
    min-height: auto;
  }
  .services-hero-actions {
    justify-content: flex-start;
  }
  .carousel-container.services-carousel .carousel-arrow.prev { left: 0; }
  .carousel-container.services-carousel .carousel-arrow.next { right: 0; }
}


/* ===== v7.9u final cleanup ===== */
.services-carousel {
  width: min(100%, 1120px);
  padding: 0;
  overflow: hidden;
}
.services-hero-slide {
  padding: 6px 0 34px;
}
.services-hero-inner {
  width: 100%;
  padding: 0;
}
.services-hero-shell {
  width: 100%;
  min-height: 330px;
  display: flex;
  align-items: stretch;
  margin: 0;
}
.services-hero-copy {
  min-height: 258px;
}
.services-hero-actions {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}
.carousel-container.services-carousel .carousel-arrow {
  z-index: 5;
}
.carousel-container.services-carousel .carousel-arrow.prev { left: 12px; }
.carousel-container.services-carousel .carousel-arrow.next { right: 12px; }

.hero-copy p {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 768px) {
  .services-carousel { padding: 0; }
  .services-hero-slide { padding: 4px 0 34px; }
  .services-hero-shell,
  .services-hero-copy { min-height: auto; }
  .services-hero-actions { justify-content: flex-start; }
  .carousel-container.services-carousel .carousel-arrow.prev { left: 6px; }
  .carousel-container.services-carousel .carousel-arrow.next { right: 6px; }
}


/* ===== v7.9v orgchart + carousel cleanup ===== */
.services-carousel {
  overflow: visible;
  padding: 0;
}
.services-hero-slide {
  padding: 6px 0 34px;
}
.services-hero-shell {
  width: 100%;
}
.carousel-container.services-carousel .carousel-arrow {
  z-index: 5;
}
.carousel-container.services-carousel .carousel-arrow.prev { left: -22px; }
.carousel-container.services-carousel .carousel-arrow.next { right: -22px; }

.orgchart-card-top {
  max-width: 780px;
  text-align: left;
  padding: 28px 28px 26px;
}
.orgchart-card-top .orgchart-leader-photo {
  margin: 0 0 16px;
}
.orgchart-card-top .orgchart-card-role,
.orgchart-card-top .orgchart-card-name,
.orgchart-card-top .orgchart-card-desc {
  text-align: left;
}
.orgchart-profile {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}
.orgchart-profile-section {
  border-top: 1px solid rgba(12,108,99,.10);
  padding-top: 12px;
}
.orgchart-profile-title {
  font-size: .95rem;
  font-weight: 800;
  color: #0c6c63;
  margin-bottom: 8px;
}
.orgchart-profile-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #405660;
  font-size: .92rem;
  line-height: 1.7;
}
.orgchart-profile-list li { margin-bottom: 0; }
.orgchart-profile-list li + li { margin-top: 4px; }
.orgchart-profile-actions { margin-top: 16px; text-align: center; }
.orgchart-more-btn { min-width: 132px; }
.orgchart-profile-collapsible[hidden] { display: none !important; }
.orgchart-profile-collapsible { margin-top: 18px; }

@media (max-width: 768px) {
  .carousel-container.services-carousel .carousel-arrow.prev { left: 6px; }
  .carousel-container.services-carousel .carousel-arrow.next { right: 6px; }
  .services-hero-slide { padding: 4px 0 34px; }
  .orgchart-card-top { max-width: none; padding: 22px 18px 20px; }
  .orgchart-card-top .orgchart-leader-photo { margin: 0 auto 14px; }
  .orgchart-card-top .orgchart-card-role,
  .orgchart-card-top .orgchart-card-name,
  .orgchart-card-top .orgchart-card-desc { text-align: center; }
  .orgchart-profile { gap: 12px; }
  .orgchart-profile-title { text-align: left; }
}

/* ===== v7.10 services carousel final UI polish ===== */
.services-carousel{
  width:min(100%, 1120px);
  padding:0;
  overflow:visible;
}
.services-hero-slide{
  padding:8px 0 38px;
}
.services-hero-shell{
  width:100%;
  min-height:356px;
  border-radius:24px;
  background:#ffffff;
  border:1px solid rgba(25,54,92,.08);
  box-shadow:0 14px 34px rgba(24,49,83,.08);
}
.services-hero-copy{
  min-height:282px;
  display:flex;
  flex-direction:column;
}
.services-hero-subtitle{
  max-width:760px;
  line-height:1.9;
}
.services-hero-case-inline{
  margin-top:16px;
}
.services-hero-actions{
  width:100%;
  margin-top:auto;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  padding-top:28px;
}
.carousel-container.services-carousel .carousel-arrow{
  z-index:20;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(37,72,116,.16);
  background:rgba(255,255,255,.98);
  color:#254874;
  box-shadow:0 10px 24px rgba(24,49,83,.16);
  font-size:26px;
  font-weight:800;
  line-height:1;
}
.carousel-container.services-carousel .carousel-arrow:hover{
  background:#ffffff;
  color:#183153;
  box-shadow:0 14px 28px rgba(24,49,83,.22);
}
.carousel-container.services-carousel .carousel-arrow.prev{ left:10px; }
.carousel-container.services-carousel .carousel-arrow.next{ right:10px; }
.carousel-container.services-carousel .carousel-indicators{
  bottom:6px;
}
.carousel-container.services-carousel .carousel-indicators button{
  width:9px;
  height:9px;
  margin:0 4px;
  background:rgba(53,91,144,.22);
}
.carousel-container.services-carousel .carousel-indicators button.active{
  width:10px;
  height:10px;
  background:#355b90;
}

@media (max-width: 900px){
  .services-hero-shell{
    min-height:332px;
  }
}

@media (max-width: 768px){
  .services-carousel{
    padding:0;
  }
  .services-hero-slide{
    padding:6px 0 34px;
  }
  .services-hero-shell{
    min-height:auto;
    border-radius:20px;
  }
  .services-hero-copy{
    min-height:auto;
  }
  .services-hero-actions{
    justify-content:flex-start;
    padding-top:22px;
  }
  .carousel-container.services-carousel .carousel-arrow{
    width:42px;
    height:42px;
    top:auto;
    bottom:58px;
    transform:none;
    font-size:24px;
  }
  .carousel-container.services-carousel .carousel-arrow.prev{ left:8px; }
  .carousel-container.services-carousel .carousel-arrow.next{ right:8px; }
}


/* Footer v7.11 refinement */
.footer-content.footer-content--compact {
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.9fr);
  align-items: start;
  column-gap: 4rem;
}
.footer-content.footer-content--compact .footer-section:first-child {
  max-width: 580px;
}
.footer-content.footer-content--compact .footer-section:last-child {
  justify-self: end;
  min-width: 180px;
}
.footer .footer-brand {
  margin-bottom: 1rem;
}
.footer .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-section li + li {
  margin-top: 0.7rem;
}
.footer .footer-section li a {
  display: inline-block;
}
.footer .footer-section p {
  line-height: 1.8;
}
.footer .footer-address,
.footer .footer-phone,
.footer .footer-note {
  display: block;
}
@media (max-width: 768px) {
  .footer-content.footer-content--compact {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
  .footer-content.footer-content--compact .footer-section:last-child {
    justify-self: start;
    min-width: 0;
  }
}


.contact-form-status {
  margin: 0 0 1rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form-status.success {
  background: #edf7ed;
  border: 1px solid #b7dfb9;
  color: #1f5f2a;
}

.contact-form-status.error {
  background: #fff2f2;
  border: 1px solid #f2c2c2;
  color: #9b1c1c;
}

form[data-contact-api="true"] button[type="submit"]:disabled,
form#contactForm button[type="submit"]:disabled {
  opacity: 0.85;
  cursor: wait;
}


.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

form[data-contact-api="true"].is-submitting button[type="submit"],
form#contactForm.is-submitting button[type="submit"] {
  pointer-events: none;
}

/* ===== Homepage About / News ===== */
.about-rich-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}
.about-card { grid-column: span 6; }
.about-card--hero, .about-card--leadership { grid-column: span 12; }
.about-card-kicker {
  display:inline-block;
  margin-bottom:10px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(13,110,253,.08);
  color:#0c5a7a;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.04em;
}
.about-en-name { font-size: .95rem; color: #5f6f7c; font-weight: 500; }
.about-vision-panel {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(12,106,136,.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12,106,136,.05), rgba(12,106,136,.02));
}
.about-vision-panel .card-title { margin-bottom: 12px; }
.about-vision-panel .card-text { margin-bottom: 0; }
.about-list { margin: 0; padding-left: 1.2rem; display: grid; gap: 10px; color: #324350; }
.section-news { background: linear-gradient(180deg, rgba(11,99,136,.04), rgba(11,99,136,.01)); }
.news-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.news-card {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(14, 42, 71, .08);
  overflow: hidden;
}
.news-card-media { background: #eef5f8; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-body { padding: 28px; }
.news-card-meta { display:flex; gap:14px; align-items:center; margin-bottom:12px; color:#5c7080; font-size:.95rem; }
.news-badge {
  display:inline-flex; align-items:center; padding:6px 12px; border-radius:999px;
  background:#0c6a88; color:#fff; font-size:.85rem; font-weight:700;
}
.news-card-title { margin: 0 0 12px; font-size: 1.8rem; color:#133045; }
.news-card-summary { font-size: 1.05rem; color:#234459; margin-bottom: 14px; }
.news-card-content p { margin: 0 0 10px; color:#3b5262; }

/* ===== Admin ===== */
.admin-page { background:#f5f8fb; }
.admin-shell { padding: 120px 0 72px; }
.admin-toolbar { display:flex; gap:12px; flex-wrap:wrap; margin: 0 0 24px; }
.admin-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:24px; }
.admin-stack { display:grid; gap:24px; }
.admin-list { display:grid; gap:12px; }
.admin-list-item {
  border:1px solid #dbe5ec; border-radius:16px; padding:16px; background:#fff; cursor:pointer;
}
.admin-list-item.active { border-color:#0c6a88; box-shadow:0 0 0 3px rgba(12,106,136,.12); }
.admin-list-head { display:flex; justify-content:space-between; gap:12px; align-items:flex-start; }
.admin-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top: 16px; }
.admin-json { min-height: 220px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.form-group-inline { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.muted-note { color:#5f7384; font-size:.95rem; }
@media (max-width: 991px) {
  .about-card, .about-card--hero, .about-card--leadership { grid-column: span 12; }
  .news-card { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
}


.section-headline { display:flex; justify-content:space-between; align-items:flex-end; gap:16px; margin-bottom:28px; }
.section-headline .section-title { margin-bottom:0; }
.section-headline--centered { display:grid; grid-template-columns: 1fr auto 1fr; align-items:end; }
.section-headline--centered .section-title { justify-self:center; text-align:center; }
.section-headline--centered .section-link { justify-self:end; }
.section-headline-spacer { min-width:1px; }
.section-link { color:#0c6a88; font-weight:700; text-decoration:none; }
.section-link:hover { text-decoration:underline; }
.about-stat-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:14px; margin-top:22px; }
.about-stat { background:linear-gradient(180deg, rgba(12,106,136,.08), rgba(12,106,136,.03)); border:1px solid rgba(12,106,136,.12); border-radius:18px; padding:18px; }
.about-stat strong { display:block; margin-bottom:8px; color:#12384d; font-size:1.5rem; }
.about-stat span { color:#4f6473; font-size:.95rem; line-height:1.6; }
.news-card-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.subpage-shell { padding-top: 88px; }
.page-hero { padding-top: 48px; padding-bottom: 24px; background: linear-gradient(180deg, rgba(11,99,136,.08), rgba(11,99,136,0)); }
.page-kicker { display:inline-flex; padding:6px 12px; border-radius:999px; background:rgba(12,106,136,.08); color:#0c6a88; font-weight:700; margin-bottom:16px; }
.page-title { margin:0 0 10px; font-size: clamp(2rem, 4vw, 3rem); color:#16384a; }
.page-lead { max-width: 760px; color:#4b6170; font-size:1.05rem; }
.news-archive-grid { display:grid; gap:24px; }
.news-archive-card { display:grid; grid-template-columns: minmax(260px, 360px) 1fr; gap:24px; background:#fff; border:1px solid #e2eaf0; border-radius:24px; overflow:hidden; box-shadow: 0 18px 54px rgba(14,42,71,.06); }
.news-archive-media img, .news-detail-media img { width:100%; height:100%; object-fit:cover; display:block; }
.news-archive-body { padding:28px; display:flex; flex-direction:column; justify-content:center; }
.news-archive-title { margin:0 0 12px; color:#14384c; font-size:1.9rem; }
.news-detail-card { background:#fff; border-radius:28px; box-shadow:0 24px 72px rgba(14,42,71,.08); overflow:hidden; }
.news-detail-header, .news-detail-content { padding: 32px; }
.news-detail-title { margin:0 0 12px; color:#133045; font-size: clamp(2rem, 4vw, 2.8rem); }
.news-detail-summary { font-size:1.1rem; color:#3c5565; margin:0; }
.news-detail-media { background:#eef4f8; max-height: 720px; overflow:hidden; }
.news-detail-content p { margin: 0 0 14px; line-height:1.9; color:#2c4556; }
.admin-header { display:flex; justify-content:space-between; gap:20px; align-items:flex-start; margin-bottom:20px; }
.admin-title { text-align:left; margin-bottom:8px; }
.admin-status-panel { display:grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap:12px; min-width: 280px; }
.admin-stat { background:#fff; border-radius:18px; border:1px solid #dbe5ec; padding:18px; text-align:center; box-shadow:0 10px 26px rgba(15,42,71,.05); }
.admin-stat strong { display:block; font-size:2rem; color:#0c6a88; }
.admin-stat span { color:#5f7384; font-size:.95rem; }
.admin-layout { display:grid; grid-template-columns: 260px minmax(0, 1fr); gap:24px; }
.admin-sidebar { padding:16px; position:sticky; top:100px; height:fit-content; }
.admin-tab { width:100%; text-align:left; padding:14px 16px; border:0; background:transparent; border-radius:14px; font-size:1rem; font-weight:700; color:#385062; cursor:pointer; }
.admin-tab:hover, .admin-tab.active { background:rgba(12,106,136,.08); color:#0c6a88; }
.admin-content { min-width:0; }
.admin-panel { display:none; }
.admin-panel.active { display:block; }
@media (max-width: 991px) { .section-headline { align-items:flex-start; flex-direction:column; } .section-headline--centered { display:flex; } .section-headline--centered .section-title { align-self:center; text-align:center; width:100%; } .section-headline--centered .section-link { align-self:flex-end; } .section-headline-spacer { display:none; } .about-stat-grid { grid-template-columns: 1fr; } .news-archive-card { grid-template-columns: 1fr; } .admin-header, .admin-layout { grid-template-columns: 1fr; display:grid; } .admin-status-panel { min-width:0; } .admin-sidebar { position:static; } }
