/* ============================================================
   一灏元启CMS - 医疗行业设计风格
   配色方案：医疗蓝 (#0d4f7c) + 湖水蓝 (#0097a7) + 活力青 (#00a896)
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #0d4f7c;
  --color-primary-light: #0097a7;
  --color-primary-dark: #0a2e4a;
  --color-accent: #00a896;
  --color-accent-light: #80cbc4;
  --color-accent-dark: #008f7a;
  --color-bg: #f0f8fa;
  --color-bg-alt: #e0eff5;
  --color-bg-dark: #0a2e4a;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-white: #ffffff;
  --color-border: #d0e0e8;
  --color-white: #ffffff;
  --color-danger: #dc3545;
  --color-success: #28a745;
  --font-heading: 'Noto Sans SC', -apple-system, 'Microsoft YaHei', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
  --shadow-sm: 0 2px 8px rgba(13,79,124,.06);
  --shadow-md: 0 8px 30px rgba(13,79,124,.10);
  --shadow-lg: 0 20px 60px rgba(13,79,124,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--color-primary); font-weight: 700; line-height: 1.3; }

/* --- Selection --- */
::selection { background: var(--color-accent); color: var(--color-white); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.75);
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: .3px;
  border-bottom: 1px solid rgba(0,168,150,.2);
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--color-accent); }
.top-bar strong { color: var(--color-accent-light); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: #fff;
  padding: 0;
  box-shadow: 0 1px 12px rgba(0,0,0,.08);
  transition: var(--transition);
}
#mainNav.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary) !important;
  padding: 12px 0;
}
.brand-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(13,79,124,.25);
}
.brand-text { font-size: 1.2rem; letter-spacing: 1px; }
.navbar-brand img { height: 42px; }

/* 移动端导航栏：品牌名和右侧按钮保持同一行 */
@media (max-width: 991.98px) {
  .navbar-brand {
    max-width: calc(100% - 140px);
    flex-shrink: 1;
    min-width: 0;
  }
  .brand-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    letter-spacing: 0;
    color: var(--color-primary) !important;
  }
  .navbar-brand img { height: 32px; }
  .navbar > .container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  /* 导航项在移动端垂直排列 */
  #navbarMain .nav-link {
    padding: 10px 16px;
    color: var(--color-text) !important;
  }
  #navbarMain .nav-item.active > .nav-link {
    background: var(--color-primary);
    color: #fff !important;
    border-radius: 8px;
    margin: 2px 8px;
  }
  /* 语言切换 */
  #navbarMain .lang-switch {
    padding: 4px 8px !important;
    font-size: .7rem !important;
    color: var(--color-text) !important;
    border-color: var(--color-border) !important;
  }
  /* CTA按钮 */
  .btn-nav-cta {
    font-size: .85rem !important;
    padding: 6px 14px !important;
  }
}

/* 超小屏幕：品牌名进一步缩小 */
@media (max-width: 480px) {
  .brand-text { font-size: 0.82rem; }
  .navbar-brand img { height: 28px; }
  .navbar-brand { max-width: calc(100% - 120px); }
}

/* 移动端：菜单点击后以浮层下拉显示，不撑开整个 head */
@media (max-width: 991.98px) {
  #mainNav > .container { position: relative; }
  /* 在所有状态（含 .collapsing 过渡态）都脱离文档流，避免 header 整体被撑开又弹回 */
  #navbarMain.collapse,
  #navbarMain.collapsing,
  #navbarMain.collapse.show {
    position: absolute;
    top: 100%;
    right: 8px;
    left: auto;
    min-width: 220px;
    max-width: calc(100vw - 16px);
    background: #fff;
    border: 1px solid var(--blog-line, #e5e6eb);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.10);
    padding: 6px 0;
    margin: 6px 0 0;
    z-index: 1050;
  }
  #navbarMain.collapse.show .navbar-nav {
    flex-direction: column;
    align-items: stretch !important;
    margin: 0 !important;
  }
  #navbarMain.collapse.show .nav-item { width: 100%; }
  #navbarMain.collapse.show .nav-link {
    padding: 11px 18px;
    color: var(--blog-ink, #1f2329) !important;
    border-radius: 0;
  }
  #navbarMain.collapse.show .nav-link.active {
    color: var(--color-primary) !important;
    background: var(--blog-brand-soft, #eaf2f8);
    font-weight: 700;
  }
  /* 工具下拉在浮层里：直接展开为子列表 */
  #navbarMain.collapse.show .dropdown-menu {
    position: static;
    float: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0 0 6px 14px;
    background: transparent;
  }
  #navbarMain.collapse.show .dropdown-item { padding: 8px 18px; }
  /* CTA按钮在浮层里撑满 */
  #navbarMain.collapse.show .btn-nav-cta {
    margin: 6px 14px;
    text-align: center;
    display: block;
  }
  /* 语言切换在浮层里靠右 */
  #navbarMain.collapse.show .lang-switch {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* 移动端右侧工具栏（电话+语言+汉堡菜单） */
.navbar-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.navbar-tools .nav-tool-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.nav-tool-phone {
  color: var(--color-accent) !important;
  background: rgba(0,168,150,.08);
}
.nav-tool-phone:hover { background: rgba(0,168,150,.18); }
.nav-tool-lang {
  color: var(--color-primary) !important;
  border: 1.5px solid var(--color-border);
  background: transparent !important;
}
.nav-tool-lang:hover { background: #f5f5f5 !important; }

/* PC端隐藏移动端工具栏 */
@media (min-width: 992px) {
  .navbar-tools { display: none !important; }
}

/* PC端导航链接样式 */
#navbarMain .nav-link {
  color: var(--color-text);
  font-size: 14.5px;
  font-weight: 500;
  padding: 14px 16px;
  position: relative;
  letter-spacing: .3px;
  transition: var(--transition);
  white-space: nowrap;
}
#navbarMain .nav-link:hover,
#navbarMain .nav-link.active {
  color: var(--color-primary);
}
/* 首页/当前页蓝色圆角高亮 */
#navbarMain .nav-item.active > .nav-link {
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 20px;
}
.btn-nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  box-shadow: 0 3px 12px rgba(0,168,150,.35);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,168,150,.45);
  color: #fff !important;
}
.btn-nav-cta::after { display: none !important; }

/* PC端导航栏电话号码 */
.nav-phone {
  color: var(--color-accent) !important;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-phone:hover { opacity: .85; }
.nav-phone i { color: var(--color-accent); }

/* PC端语言切换按钮 */
#navbarMain .lang-switch {
  border: 1.5px solid var(--color-border) !important;
  border-radius: 20px !important;
  padding: 6px 14px !important;
  font-size: .82rem !important;
  color: var(--color-text) !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap;
  transition: var(--transition);
}
#navbarMain .lang-switch:hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

.navbar-toggler {
  border: 1.5px solid var(--color-border);
  padding: 6px 8px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  margin-left: 4px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   HERO BANNER / SLIDER
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* .hero-bg 的装饰动画圆形已移除，背景图直接显示 */
@keyframes float-glow {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
/* Decorative dots */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,168,150,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,150,.15);
  border: 1px solid rgba(0,168,150,.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--color-accent-light);
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInUp .6s ease;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp .6s ease .1s both;
}
.hero-title span { color: var(--color-accent-light); }
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp .6s ease .2s both;
}
.hero-actions { animation: fadeInUp .6s ease .3s both; }

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .6s ease .4s both;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent-light);
  display: block;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
}

/* ========== Banner 轮播（优化版） ========== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}
.hero-carousel .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-carousel .carousel-item {
  display: block !important;
  position: absolute !important;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .8s ease-in-out;
  z-index: 0;
}
.hero-carousel .carousel-item.active {
  position: relative !important;
  opacity: 1 !important;
  z-index: 1;
}

/* 背景图 */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* 底部渐变遮罩 - 轻薄渐变，仅保证底部文字可读 */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(5,20,40,.55) 0%, rgba(5,20,40,.2) 50%, transparent 100%);
  z-index: 1;
}

/* 文字内容 - 左下角布局，不遮挡图片主体 */
.hero-carousel .carousel-caption.hero-content {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  text-align: left !important;
  padding: 40px 60px 50px !important;
  width: 100% !important;
  max-width: 700px;
  color: #fff !important;
  z-index: 2 !important;
}

/* 标题 - 精致大小 */
.hero-banner-title {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  letter-spacing: 1px;
}

/* 副标题 - 小而精致 */
.hero-banner-sub {
  font-size: clamp(.85rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,.8);
  margin: 0 0 18px 0;
  line-height: 1.6;
  max-width: 520px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* 按钮组 */
.hero-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-banner-btns .btn-sm {
  padding: 8px 22px;
  font-size: .88rem;
  border-radius: 6px;
}
.hero-banner-btns .btn-outline-light {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.hero-banner-btns .btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}

/* 箭头按钮 - 半透明暗色 */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .3s;
  border-radius: 50%;
  background: rgba(0,0,0,.25);
}
.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next { opacity: 1; }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  filter: invert(1);
  width: 20px;
  height: 20px;
}

/* 指示器 - 底部居中，精致圆点 */
.hero-carousel .carousel-indicators {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  z-index: 5 !important;
  display: flex !important;
  gap: 8px;
  justify-content: center;
}
.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  padding: 0;
  margin: 0 !important;
  transition: all .3s;
  opacity: 1;
}
.hero-carousel .carousel-indicators button:hover {
  background: rgba(255,255,255,.6);
  transform: scale(1.2);
}
.hero-carousel .carousel-indicators button.active {
  background: #00a896;
  width: 28px;
  border-radius: 5px;
}

/* 轮播移动端适配 */
@media (max-width: 768px) {
  .hero-carousel { height: 60vh; min-height: 400px; }
  .hero-carousel .carousel-caption.hero-content {
    padding: 25px 25px 35px !important;
    max-width: 100%;
  }
  .hero-banner-title { font-size: 1.35rem; }
  .hero-banner-sub { font-size: .82rem; }
  .hero-banner-btns .btn-sm { padding: 6px 16px; font-size: .8rem; }
  .hero-overlay { height: 40%; }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next { display: none; }
}
.hero-slide {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
/* hero-slide 本身不再添加遮罩，由 .hero-overlay 统一控制 */

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  box-shadow: 0 6px 20px rgba(0,168,150,.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,168,150,.45);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}
.btn-outline-accent {
  background: transparent;
  color: var(--color-accent-light);
  border: 2px solid rgba(0,168,150,.5);
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-accent:hover {
  background: rgba(0,168,150,.1);
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  transform: translateY(-2px);
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: var(--color-white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(13,79,124,.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(13,79,124,.4);
  color: var(--color-white);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section-padding { padding: 90px 0; }
.section-padding-lg { padding: 110px 0; }
.section-bg-white { background: var(--color-white); }
.section-bg-alt { background: var(--color-bg-alt); }
.section-bg-dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.section-bg-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,168,150,.03) 0%, transparent 50%);
  pointer-events: none;
}
.section-bg-dark h2, .section-bg-dark h3, .section-bg-dark h4 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header .section-label i { font-size: 10px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--color-text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.section-header-light p { color: rgba(255,255,255,.65); }

/* Decorative line */
.deco-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 3px;
  margin: 16px auto;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(13,79,124,.06), rgba(0,151,167,.1));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: var(--color-primary);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-accent-light);
  transform: scale(1.08) rotate(-3deg);
}
.service-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--color-text-light); font-size: 14px; margin-bottom: 20px; }
.service-card .btn-link {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .btn-link i { transition: var(--transition); }
.service-card:hover .btn-link i { transform: translateX(4px); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
/* 产品卡片作为链接时去掉默认样式 */
a.product-card { color: inherit; text-decoration: none; display: block; }
a.product-card:hover { color: inherit; }
/* 产品图片包裹器（兼容product-thumb-wrap class） */
.product-thumb-wrap { position: relative; }
.badge-recommend {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* 查看更多按钮（板块底部居中） */
.section-more {
  text-align: center;
  margin-top: 40px;
}
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 32px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-view-more:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,79,124,.25);
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-thumb {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-thumb-placeholder {
  font-size: 64px;
  color: rgba(13,79,124,.12);
  transition: var(--transition);
}
.product-card:hover .product-thumb-placeholder {
  transform: scale(1.1);
  color: rgba(13,79,124,.2);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h4 { font-size: 1.15rem; margin-bottom: 8px; }
.product-body .subtitle {
  color: var(--color-accent-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}
.product-body p { color: var(--color-text-light); font-size: 14px; flex: 1; }
.product-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================================
   CASE CARDS
   ============================================================ */
.case-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  color: var(--color-primary) !important;
}
.case-thumb {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #e8f4f8, #d4edea);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.case-thumb-icon {
  font-size: 48px;
  color: var(--color-accent);
  opacity: .35;
}
.case-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-accent-dark);
  font-size: 12px;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(0,168,150,.08);
  border-radius: 50px;
}
.case-body { padding: 20px 24px; }
.case-body h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--color-text); line-height: 1.5; }
.case-desc {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}
.case-data {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}
.case-data-item {
  text-align: center;
  flex: 1;
  background: var(--color-bg);
  padding: 12px 8px;
  border-radius: var(--radius);
}
.case-data-label {
  font-size: 11px;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 4px;
}
.case-data-value {
  font-size: 18px;
  font-weight: 700;
  display: block;
}
.case-data-value.danger { color: var(--color-danger); }
.case-data-value.success { color: var(--color-success); }
.case-body .summary {
  color: var(--color-text-light);
  font-size: 14px;
}

/* ============================================================
   ARTICLE / NEWS CARDS
   ============================================================ */
.article-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.article-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--color-bg), var(--color-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(13,79,124,.1);
}
.article-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 10px;
}
.article-body h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-body h4 a { color: var(--color-primary); }
.article-body h4 a:hover { color: var(--color-accent); }
.article-body .summary {
  color: var(--color-text-light);
  font-size: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   CTA SECTION (Call to Action)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary) 60%, var(--color-primary-light));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,168,150,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 18px; margin-bottom: 36px; }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,.03);
}
.feature-num {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}
.feature-text h5 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--color-accent-light);
}
.feature-text p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 25px;
  right: -8px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
}
/* 最后一个不画线（桌面端由col-md-2最后一个） */
.col-md-2:last-child .process-step::after { display: none; }
.process-icon {
  width: 50px; height: 50px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--color-accent-light);
  border: 3px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
}
.process-step h5 { font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--color-text-light); }

/* ============================================================
   CONTACT / BOOKING FORM
   ============================================================ */
.booking-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13,79,124,.02), rgba(0,168,150,.05));
  pointer-events: none;
}
.booking-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.booking-form h3 {
  margin-bottom: 6px;
}
.booking-form .form-text {
  color: var(--color-text-light);
  margin-bottom: 28px;
}
.booking-form .form-control,
.booking-form .form-select {
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(13,79,124,.08);
}
.booking-form .btn-accent { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

.contact-info-card {
  background: var(--color-primary-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--color-white);
  height: 100%;
}
.contact-info-card h4 {
  color: var(--color-accent-light);
  margin-bottom: 30px;
}
.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-list li .icon-wrap {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(0,168,150,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent-light);
  font-size: 18px;
}
.contact-info-list li .info-text strong {
  display: block;
  color: var(--color-white);
  font-size: 13px;
  margin-bottom: 2px;
}
.contact-info-list li .info-text {
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary) 60%);
  padding: 120px 0 80px;
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(rgba(0,168,150,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.about-hero h1 { color: var(--color-white); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,.7); font-size: 18px; max-width: 600px; margin: 0 auto; }

.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
  padding: 100px 0 60px;
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,168,150,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-hero h1 { color: var(--color-white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 16px; max-width: 500px; margin: 0 auto; }
.page-hero-title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 10px; }
.page-hero-subtitle { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

.breadcrumb-wrap {
  background: #f0f8fa;
  padding: 12px 0;
  border-bottom: 1px solid #d0e0e8;
}
.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
}
.breadcrumb-custom a { color: rgba(255,255,255,.5); }
.breadcrumb-custom a:hover { color: var(--color-accent-light); }
.breadcrumb-custom span { color: rgba(255,255,255,.8); }

.team-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 100px; height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: var(--color-accent-light);
}
.team-card h5 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role {
  color: var(--color-accent-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.detail-hero {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 100px 0 50px;
  color: var(--color-white);
}
.detail-hero h1 { color: var(--color-white); margin-bottom: 16px; }
.detail-meta {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.detail-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.detail-content h2, .detail-content h3, .detail-content h4 {
  color: var(--color-primary);
  margin-top: 28px;
  margin-bottom: 14px;
}
.detail-content p { margin-bottom: 16px; color: var(--color-text); }
.detail-content ul, .detail-content ol { margin-bottom: 16px; }
.detail-content li { margin-bottom: 8px; }

/* Sidebar detail */
.detail-sidebar .widget {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
}
.detail-sidebar .widget h5 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-bg-alt);
}
.related-list { list-style: none; padding: 0; }
.related-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-bg-alt);
}
.related-list li:last-child { border-bottom: none; }
.related-list li a {
  font-size: 14px;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-list li a:hover { color: var(--color-accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.7);
}
.footer-main {
  padding: 70px 0 40px;
}
.footer-heading {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-item {
  background: rgba(0,168,150,.12);
  color: var(--color-accent-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  border: 1px solid rgba(0,168,150,.2);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--color-accent-light); padding-left: 4px; }
.footer-links a i { font-size: 10px; color: var(--color-accent); }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.footer-contact li > i {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(0,168,150,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent-light);
  font-size: 14px;
  margin-top: 2px;
}
.footer-contact li strong {
  display: block;
  color: var(--color-white);
  font-size: 13px;
  margin-bottom: 2px;
}
.footer-contact li span, .footer-contact li a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.footer-contact li a:hover { color: var(--color-accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--color-accent-light); }

/* ============================================================
   SIDEBAR FLOAT (PC)
   ============================================================ */
.sidebar-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  background: var(--color-white);
  border-radius: 60px;
  padding: 8px;
  box-shadow: 0 4px 30px rgba(0,0,0,.12);
  border: 1px solid var(--color-border);
}
.sidebar-item {
  width: 50px; height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-light);
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}
.sidebar-item span { font-size: 9px; margin-top: 1px; }
.sidebar-item:hover {
  background: var(--color-primary);
  color: var(--color-accent-light);
}
.sidebar-item.call-item:hover { background: var(--color-danger); color: var(--color-white); }
.sidebar-item.wechat-item:hover { background: #07c160; color: var(--color-white); }

.phone-popup {
  display: none;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
  white-space: nowrap;
}
.sidebar-item.call-item:hover .phone-popup { display: block; }
.phone-popup p { font-size: 12px; color: var(--color-text); margin-bottom: 8px; }
.phone-number-link { font-size: 20px; font-weight: 800; color: var(--color-danger); text-decoration: none; display: block; }
.phone-number-link:hover { text-decoration: underline; }

.qrcode-popup {
  display: none;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.sidebar-item:hover .qrcode-popup { display: block; }
.qrcode-popup p { font-size: 12px; color: var(--color-text); margin-bottom: 8px; }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.float-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  display: flex;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  border-top: 1px solid var(--color-border);
}
.float-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  font-size: 12px;
  color: var(--color-text-light);
  text-decoration: none;
  gap: 3px;
  transition: var(--transition);
}
.float-btn i { font-size: 20px; }
.float-btn.call-btn i { color: var(--color-danger); }
.float-btn.wechat-btn i { color: #07c160; }
.float-btn.book-btn i { color: var(--color-accent-dark); }
.float-btn:active { background: var(--color-bg); }

/* ============================================================
   MESSAGE FORM (AJAX popup)
   ============================================================ */
.msg-modal .modal-content {
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
}
.msg-modal .modal-header {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 20px 28px;
}
.msg-modal .modal-header .btn-close { filter: invert(1); }
.msg-modal .modal-body { padding: 28px; }
.msg-modal .form-control {
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.msg-modal .form-control:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(13,79,124,.08);
}

/* ============================================================
   LIST PAGES (service, product, case list)
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-tag {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  border: 2px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  cursor: pointer;
}
.filter-tag:hover, .filter-tag.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

/* Pagination */
.pagination-custom .page-link {
  border: 2px solid var(--color-border);
  color: var(--color-text);
  margin: 0 3px;
  border-radius: var(--radius) !important;
  padding: 8px 16px;
  transition: var(--transition);
}
.pagination-custom .page-link:hover,
.pagination-custom .page-item.active .page-link {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ============================================================
   COUNTER STATS
   ============================================================ */
.stats-section {
  padding: 60px 0;
  background: var(--color-white);
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1.2;
}
.stat-number span { color: var(--color-accent); }
.stat-label {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-section, .hero-carousel, .hero-slide { min-height: 70vh; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.8rem; }
  .process-step::after { display: none; }
  .process-step { padding: 0 6px; }
  .process-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 10px; }
  .process-step h5 { font-size: 13px; }
  .process-step p { font-size: 11px; }
  .detail-content { padding: 30px 20px; }
  .section-padding { padding: 60px 0; }
  .section-padding-lg { padding: 80px 0; }
  .booking-form { padding: 24px; }
  /* 手机端隐藏右侧装饰层（避免“糊了一层东西”） */
  .booking-section::before { display: none; }
  .cta-section::before { width: 300px; height: 300px; top: -30%; right: -30%; }
}
@media (max-width: 767px) {
  .hero-section, .hero-carousel, .hero-slide { min-height: 60vh; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 11px; }
  .section-header { margin-bottom: 40px; }
  .service-card { padding: 28px 20px; }
  .product-thumb { height: 180px; }
  .footer-main { padding: 40px 0 30px; }
  .float-contact { padding-bottom: env(safe-area-inset-bottom); }
}
@media (max-width: 575px) {
  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: .95rem; }
  .btn-accent { padding: 12px 24px; font-size: 14px; }
}

/* ============================================================
   ADMIN STYLES (keep existing, just add accent overrides)
   ============================================================ */
.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 20px;
}
.admin-login-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.admin-login-card .brand-section {
  text-align: center;
  margin-bottom: 32px;
}
.admin-login-card .brand-icon-lg {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0,168,150,.3);
}
