/* ============================================
   060 · 康护医疗 — Clean Healthcare
   医疗器械与耗材
   极致干净 · 柔和圆角 · 信赖感
   ============================================ */

:root {
  --brand: #0B8A8A;
  --brand-light: #0EA0A0;
  --brand-dark: #077676;
  --mint: #E8F5F5;
  --mint-light: #F7FAFA;
  --bg: #ffffff;
  --bg-alt: #F7FAFA;
  --text: #1A2B3B;
  --text-2: #5A6E7F;
  --text-3: #8A9BAA;
  --border: #D8E8E8;
  --white: #ffffff;
  --font: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tr: 0.3s var(--ease);
  --sh: 0 4px 24px rgba(11, 138, 138, 0.08);
  --sh-lg: 0 8px 40px rgba(11, 138, 138, 0.12);
  --sh-card: 0 2px 16px rgba(11, 138, 138, 0.06);
  --r: 16px;
  --r-sm: 12px;
  --r-pill: 999px;
  --mw: 1200px;
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: color var(--tr), opacity var(--tr); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* === Container === */
.container { width: 100%; max-width: var(--mw); margin: 0 auto; padding: 0 40px; }
@media (max-width: 1024px) { .container { padding: 0 24px; } }
@media (max-width: 640px) { .container { padding: 0 18px; } }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 15px; font-weight: 600; border-radius: var(--r-pill); transition: all var(--tr); cursor: pointer; border: 2px solid transparent; letter-spacing: 0.2px; }
.btn-primary { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-light); border-color: var(--brand-light); box-shadow: 0 6px 20px rgba(11, 138, 138, 0.3); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--brand); color: var(--brand); background: var(--white); }
.btn-outline:hover { background: var(--brand); color: var(--white); box-shadow: 0 6px 20px rgba(11, 138, 138, 0.25); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--brand); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--mint); border-color: var(--mint); box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25); transform: translateY(-1px); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 14px 32px; font-size: 15px; font-weight: 600; border-radius: var(--r-pill); transition: all var(--tr); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* === Navigation === */
.site-nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: background-color var(--tr), box-shadow var(--tr), backdrop-filter var(--tr); }
.site-nav.at-top { background: transparent; }
/* 下拉后：拟态玻璃背景，文字深色不重合 */
.site-nav.scrolled { background: rgba(255, 255, 255, 0.28); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); -moz-backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 40px; height: 40px; background: var(--brand); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-text { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: 0.3px; }
.at-top .logo-text { color: var(--white); }
.scrolled .logo-text { color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 18px; font-size: 14px; font-weight: 500; border-radius: var(--r-pill); transition: color var(--tr), background-color var(--tr); }
.at-top .nav-links a { color: rgba(255, 255, 255, 0.85); }
.at-top .nav-links a:hover,
.at-top .nav-links a.active { color: var(--white); background: rgba(255, 255, 255, 0.12); }
.scrolled .nav-links a { color: var(--text-2); }
.scrolled .nav-links a:hover,
.scrolled .nav-links a.active { color: var(--brand); background: var(--mint); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-lang { font-size: 12px; font-weight: 600; color: var(--text-2); padding: 6px 12px; border-radius: var(--r-pill); border: 1.5px solid var(--border); transition: all var(--tr); }
.at-top .nav-lang { color: rgba(255, 255, 255, 0.6); border-color: rgba(255, 255, 255, 0.25); }
.scrolled .nav-lang { color: var(--text-2); border-color: var(--border); }
.nav-quote { padding: 10px 24px; font-size: 13px; font-weight: 600; border-radius: var(--r-pill); transition: all var(--tr); }
.at-top .nav-quote { background: var(--white); color: var(--brand); }
.at-top .nav-quote:hover { box-shadow: 0 4px 16px rgba(255,255,255,0.3); transform: translateY(-1px); }
.scrolled .nav-quote { background: var(--brand); color: var(--white); }
.scrolled .nav-quote:hover { background: var(--brand-light); box-shadow: 0 4px 16px rgba(11,138,138,0.25); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: background var(--tr); }
.at-top .mobile-toggle span { background: var(--white); }
@media (max-width: 1024px) { .nav-links, .nav-lang { display: none; } .mobile-toggle { display: flex; } }
@media (max-width: 1024px) {
  .nav-links.mobile-open{display:flex!important;flex-direction:column;position:absolute;top:72px;left:0;width:100%;background:rgba(255,255,255,.98);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);padding:24px 30px;gap:14px;box-shadow:0 8px 30px rgba(11,138,138,.08);z-index:999;border-top:1px solid var(--border)}
  .nav-links.mobile-open a{color:var(--text)!important;font-size:15px;font-weight:500}
  .nav-links.mobile-open a:hover,.nav-links.mobile-open a.active{color:var(--brand)!important;background:var(--mint);border-radius:var(--r-pill)}
}

/* === Hero === */
.hero { position: relative; width: 100%; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(160deg, #E8F5F5 0%, #d4efef 30%, #b8e6e6 70%, #0B8A8A 100%); }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s var(--ease); }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide .hero-bg { position: absolute; inset: 0; }
.hero-slide .hero-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 10s var(--ease); }
.hero-slide.active .hero-bg img { transform: scale(1.08); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(11,138,138,0.6) 0%, rgba(11,138,138,0.35) 40%, rgba(7,118,118,0.5) 100%); z-index: 1; pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-body { text-align: center; padding: 0 0 40px; }
.hero-tag { display: inline-block; padding: 8px 20px; background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 1px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.hero-title { font-size: 48px; font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; max-width: 680px; margin-left: auto; margin-right: auto; }
.hero-desc { font-size: 17px; color: rgba(255, 255, 255, 0.9); line-height: 1.7; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-controls { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; align-items: center; gap: 24px; }
.hero-arrows { display: flex; gap: 8px; }
.hero-prev, .hero-next { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; color: var(--white); cursor: pointer; transition: all var(--tr); }
.hero-prev:hover, .hero-next:hover { background: rgba(255, 255, 255, 0.3); border-color: rgba(255, 255, 255, 0.5); transform: scale(1.05); }
.hero-prev svg, .hero-next svg { width: 18px; height: 18px; }
.hero-dots { display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.35); border: none; cursor: pointer; transition: all var(--tr); }
.hero-dot:hover { background: rgba(255, 255, 255, 0.6); }
.hero-dot.active { background: var(--white); transform: scale(1.3); box-shadow: 0 0 12px rgba(255,255,255,0.4); }
.hero-products { position: relative; z-index: 2; display: flex; justify-content: center; gap: 24px; margin-top: -20px; padding-bottom: 0; }
.hero-product-thumb { width: 160px; height: 120px; border-radius: var(--r); overflow: hidden; border: 3px solid rgba(255,255,255,0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.15); transition: all var(--tr); }
.hero-product-thumb:hover { transform: translateY(-4px); border-color: var(--white); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.hero-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .hero { min-height: 80vh; } .hero-title { font-size: 32px; } .hero-desc { font-size: 15px; } .hero-controls { bottom: 24px; gap: 16px; } .hero-product-thumb { width: 110px; height: 80px; } }
@media (max-width: 480px) { .hero-title { font-size: 26px; } .hero-products { gap: 12px; } .hero-product-thumb { width: 90px; height: 65px; } }

/* === Section === */
.sec { padding: 96px 0; }
.sec-alt { background: var(--bg-alt); }
.sec-head { margin-bottom: 52px; }
.sec-badge { display: inline-block; padding: 6px 16px; background: var(--mint); color: var(--brand); font-size: 12px; font-weight: 700; border-radius: var(--r-pill); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.sec-title { font-size: 32px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; margin-bottom: 10px; line-height: 1.25; }
.sec-sub { font-size: 16px; color: var(--text-2); line-height: 1.7; max-width: 560px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }

/* === Product Categories (4-col rounded + circle icons) === */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 24px 36px; background: var(--white); border-radius: var(--r); border: 1.5px solid var(--border); transition: all var(--tr); }
.cat-card:hover { border-color: var(--brand); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.cat-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all var(--tr); }
.cat-card:hover .cat-icon { background: var(--brand); }
.cat-icon svg { width: 32px; height: 32px; stroke: var(--brand); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--tr); }
.cat-card:hover .cat-icon svg { stroke: var(--white); }
.cat-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.cat-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.cat-card .link { font-size: 13px; font-weight: 600; color: var(--brand); margin-top: 14px; display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cat-grid { grid-template-columns: 1fr; } }

/* === Certification Trust Bar === */
.cert-sec { padding: 56px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cert-inner { text-align: center; }
.cert-inner p { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.cert-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.cert-item { display: flex; align-items: center; gap: 10px; padding: 12px 24px; background: var(--mint-light); border-radius: var(--r-pill); border: 1.5px solid var(--border); transition: all var(--tr); }
.cert-item:hover { border-color: var(--brand); background: var(--mint); transform: translateY(-2px); box-shadow: var(--sh-card); }
.cert-item svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.cert-item span { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: 0.3px; }
@media (max-width: 640px) { .cert-list { gap: 10px; } .cert-item { padding: 10px 18px; } }

/* === Solutions (3-col cards) === */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sol-card { display: block; padding: 36px 28px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); transition: all var(--tr); }
.sol-card:hover { border-color: var(--brand); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.sol-card-icon { width: 56px; height: 56px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; background: var(--mint); border-radius: var(--r-sm); transition: all var(--tr); }
.sol-card:hover .sol-card-icon { background: var(--brand); }
.sol-card-icon svg { width: 26px; height: 26px; stroke: var(--brand); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--tr); }
.sol-card:hover .sol-card-icon svg { stroke: var(--white); }
.sol-card h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.sol-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 18px; }
.sol-card .link { font-size: 14px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--tr); }
.sol-card:hover .link { gap: 10px; }
@media (max-width: 1024px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .solutions-grid { grid-template-columns: 1fr; } }

/* === Why Choose Us (left text + right image) === */
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-content h2 { font-size: 32px; font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: 14px; }
.why-content > p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 28px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.why-list-item { display: flex; align-items: flex-start; gap: 14px; }
.why-check { width: 28px; height: 28px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check svg { width: 14px; height: 14px; stroke: var(--brand); fill: none; stroke-width: 2.5; }
.why-list-item h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.why-list-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.why-image { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); }
.why-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 1024px) { .why-split { grid-template-columns: 1fr; gap: 40px; } }

/* === Why Grid (4-col icon) === */
.why-sec { padding: 80px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item { text-align: center; padding: 32px 20px; border-radius: var(--r); background: var(--bg-alt); border: 1.5px solid transparent; transition: all var(--tr); }
.why-item:hover { border-color: var(--brand); box-shadow: var(--sh); transform: translateY(-2px); }
.why-icon { width: 56px; height: 56px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: var(--brand); color: var(--white); border-radius: 50%; }
.why-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.why-item p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; gap: 16px; } .why-sec { padding: 60px 0; } }

/* === Stats Bar === */
.stats-sec { padding: 64px 0; background: var(--white); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 24px 16px; }
.stat-num { font-size: 42px; font-weight: 800; color: var(--brand); letter-spacing: -1px; margin-bottom: 6px; line-height: 1.1; }
.stat-label { font-size: 14px; color: var(--text-2); font-weight: 500; }
.stat-divider { width: 40px; height: 3px; background: var(--mint); border-radius: 2px; margin: 10px auto 0; }
@media (max-width: 640px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; } .stat-num { font-size: 32px; } .stats-sec { padding: 48px 0; } }

/* === Cases / Projects (3-col) === */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proj-card { display: block; background: var(--white); border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--border); transition: all var(--tr); }
.proj-card:hover { border-color: var(--brand); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.proj-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.proj-card:hover .proj-img img { transform: scale(1.05); }
.proj-body { padding: 24px; }
.proj-tag { display: inline-block; padding: 4px 12px; background: var(--mint); color: var(--brand); font-size: 11px; font-weight: 700; border-radius: var(--r-pill); margin-bottom: 10px; }
.proj-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.proj-meta { font-size: 13px; color: var(--text-3); }
.proj-card--bar { display: flex; align-items: center; gap: 24px; padding: 20px; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r); transition: all var(--tr); }
.proj-card--bar:hover { border-color: var(--brand); box-shadow: var(--sh); }
.proj-card--bar .proj-img { width: 180px; flex-shrink: 0; margin-bottom: 0; aspect-ratio: 16/10; border-radius: var(--r-sm); overflow: hidden; }
@media (max-width: 640px) { .proj-card--bar { flex-direction: column; align-items: stretch; } .proj-card--bar .proj-img { width: 100%; } }
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

/* === Products Grid 2-col Large Cards === */
.products-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.p-card-lg { display: block; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all var(--tr); }
.p-card-lg:hover { border-color: var(--brand); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.p-card-lg-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.p-card-lg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.p-card-lg:hover .p-card-lg-img img { transform: scale(1.04); }
.p-card-lg-body { padding: 28px 28px 32px; }
.p-card-lg-body h3 { font-size: 21px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.p-card-lg-body p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.p-card-lg-body .link { font-size: 14px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 768px) { .products-grid-2 { grid-template-columns: 1fr; } }

/* === Products Grid 3-col === */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p-card { display: block; transition: all var(--tr); }
.p-card:hover { opacity: 0.92; }
.p-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); border-radius: var(--r); margin-bottom: 14px; }
.p-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.p-card:hover .p-card-img img { transform: scale(1.05); }
.p-card-title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.p-card-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.products-more { text-align: center; margin-top: 44px; }
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .products-grid { grid-template-columns: 1fr; gap: 20px; } }

/* === Blog (3-col) === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.b-card { display: block; background: var(--white); border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--border); transition: all var(--tr); }
.b-card:hover { border-color: var(--brand); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.b-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.b-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.b-card:hover .b-card-img img { transform: scale(1.05); }
.b-card-body { padding: 24px; }
.b-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 12px; color: var(--text-3); }
.b-card-meta .tag { padding: 3px 10px; background: var(--mint); color: var(--brand); font-weight: 600; border-radius: var(--r-pill); }
.b-card-title { font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.45; margin-bottom: 8px; }
.b-card-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-grid--lead { grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 24px; }
.blog-grid--lead .b-card--lead { grid-column: 1; grid-row: 1 / -1; }
.blog-grid--lead .b-card--lead .b-card-img { aspect-ratio: 4/3; }
.blog-grid--lead .b-card--lead .b-card-title { font-size: 20px; }
.blog-head-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; }
.blog-more { font-size: 14px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
.blog-more:hover { opacity: 0.8; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .blog-grid--lead { grid-template-columns: 1fr; } .blog-grid--lead .b-card--lead { grid-row: auto; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } .blog-head-row { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* === CTA === */
.cta-sec { padding: 88px 0; background: linear-gradient(135deg, #0B8A8A 0%, #0EA0A0 50%, #0B8A8A 100%); text-align: center; position: relative; overflow: hidden; }
.cta-sec::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-sec .sec-title { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-sec p { font-size: 16px; color: rgba(255, 255, 255, 0.8); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; position: relative; }

/* === Footer === */
.site-footer { background: var(--text); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-brand .logo-text { color: var(--white); font-size: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255, 255, 255, 0.45); line-height: 1.7; margin-top: 14px; max-width: 270px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 50%; color: rgba(255, 255, 255, 0.5); font-size: 11px; font-weight: 600; transition: all var(--tr); }
.footer-social a:hover { color: var(--white); border-color: var(--brand); background: rgba(11,138,138,0.3); }
.footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255, 255, 255, 0.6); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.45); transition: color var(--tr); }
.footer-col a:hover { color: var(--brand-light); }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.45); line-height: 1.5; }
.footer-contact-row svg { width: 16px; height: 16px; stroke: rgba(255, 255, 255, 0.35); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 12px; color: rgba(255, 255, 255, 0.25); }
.footer-bottom a { color: rgba(255, 255, 255, 0.25); margin-left: 16px; }
.footer-bottom a:hover { color: var(--brand-light); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* === Scroll Reveal === */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.show { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.05s; }
.rv.d2 { transition-delay: 0.1s; }
.rv.d3 { transition-delay: 0.15s; }
.rv.d4 { transition-delay: 0.2s; }
.rv.d5 { transition-delay: 0.25s; }
.rv.d6 { transition-delay: 0.3s; }
.rv.d7 { transition-delay: 0.35s; }
.rv.d8 { transition-delay: 0.4s; }

/* === Inner Page Hero === */
.page-hero { padding: 150px 0 60px; background: linear-gradient(160deg, var(--mint-light) 0%, var(--mint) 100%); }
.page-hero .sec-title { font-size: 36px; margin-bottom: 8px; }
.page-hero .sec-sub { margin-top: 4px; }
.page-crumbs { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 13px; }
.page-crumbs a { color: var(--text-2); }
.page-crumbs a:hover { color: var(--brand); }
.page-crumbs .sep { color: var(--border); }
.page-crumbs .cur { color: var(--text-3); }

/* === Product Detail === */
.pd-sec { padding: 72px 0; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pd-gallery { position: sticky; top: 96px; }
.pd-main { aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; background: var(--bg-alt); margin-bottom: 12px; }
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pd-thumb { aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--tr); }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--brand); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-info h1 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.pd-sub { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.pd-meta { display: flex; gap: 24px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.pd-meta-item .lbl { font-size: 11px; color: var(--text-3); letter-spacing: 0.5px; text-transform: uppercase; }
.pd-meta-item .val { font-size: 15px; font-weight: 700; color: var(--text); margin-top: 3px; }
.pd-actions { display: flex; gap: 12px; margin-top: 28px; }
.specs-sec { padding: 72px 0; background: var(--bg-alt); }
.specs-table { width: 100%; border-collapse: collapse; background: var(--bg); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-card); }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table th, .specs-table td { padding: 16px 22px; text-align: left; font-size: 14px; }
.specs-table th { width: 200px; background: var(--mint-light); color: var(--text-2); font-weight: 600; }
.specs-table td { color: var(--text); }
@media (max-width: 1024px) { .pd-grid { grid-template-columns: 1fr; } .pd-gallery { position: static; } }

/* === Blog Page === */
.blog-page-sec { padding: 72px 0 96px; }
.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 52px; }
.pg-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); font-size: 14px; color: var(--text-2); background: var(--bg); cursor: pointer; border-radius: var(--r-sm); transition: all var(--tr); }
.pg-btn:hover, .pg-btn.active { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* === Article === */
.article-sec { padding: 48px 0 96px; }
.article-wrap { max-width: 720px; margin: 0 auto; }
.article-head { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article-head .tag { display: inline-block; padding: 5px 14px; background: var(--mint); color: var(--brand); font-size: 11px; font-weight: 700; border-radius: var(--r-pill); margin-bottom: 14px; }
.article-head h1 { font-size: 32px; font-weight: 800; color: var(--text); line-height: 1.35; margin-bottom: 14px; }
.article-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-3); }
.article-cover { width: 100%; aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; margin-bottom: 40px; background: var(--bg-alt); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body h2 { font-size: 22px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.article-body p { font-size: 16px; color: var(--text-2); line-height: 1.9; margin-bottom: 16px; }
.article-body blockquote { margin: 24px 0; padding: 20px 24px; border-left: 4px solid var(--brand); background: var(--mint-light); font-style: italic; color: var(--text); line-height: 1.8; border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.article-body ul { margin: 12px 0 18px 20px; }
.article-body ul li { font-size: 16px; color: var(--text-2); line-height: 1.9; list-style: disc; }
.article-pager { display: flex; justify-content: space-between; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); }
.ap-link { max-width: 45%; }
.ap-link .lbl { font-size: 12px; color: var(--text-3); margin-bottom: 4px; }
.ap-link .ttl { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.5; }
.ap-link:hover .ttl { color: var(--brand); }
.ap-link.next { text-align: right; }
@media (max-width: 1024px) { .blog-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-page-grid { grid-template-columns: 1fr; } }

/* === Contact === */
.contact-sec { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-left h2 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.contact-left > p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 32px; }
.ci-list { display: flex; flex-direction: column; gap: 22px; }
.ci { display: flex; gap: 14px; }
.ci-icon { width: 48px; height: 48px; background: var(--mint); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 20px; height: 20px; stroke: var(--brand); fill: none; stroke-width: 1.5; }
.ci h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.ci p { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.contact-form { padding: 40px; background: var(--mint-light); border-radius: var(--r); border: 1.5px solid var(--border); }
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.contact-form > p { font-size: 14px; color: var(--text-2); margin-bottom: 26px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group.full { grid-column: 1 / -1; }
.cf-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.cf-group label .req { color: #d9534f; }
.cf-group input, .cf-group select, .cf-group textarea { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 14px; font-family: inherit; color: var(--text); background: var(--bg); outline: none; transition: border-color var(--tr), box-shadow var(--tr); }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(11,138,138,0.1); }
.cf-group textarea { min-height: 110px; resize: vertical; }
.cf-submit { margin-top: 20px; }
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } .cf-row { grid-template-columns: 1fr; } }

/* === About === */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 1024px) { .about-intro { grid-template-columns: 1fr; } }
.about-intro-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); border-radius: var(--r); box-shadow: var(--sh-lg); }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.milestone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 640px) { .milestone-grid { grid-template-columns: 1fr; } }
.milestone-card { padding: 32px; background: var(--white); border-radius: var(--r); border: 1.5px solid var(--border); transition: all var(--tr); }
.milestone-card:hover { border-color: var(--brand); box-shadow: var(--sh); }
.milestone-card .year { font-size: 32px; font-weight: 800; color: var(--brand); margin-bottom: 8px; }
.milestone-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.milestone-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* === Hero Variants === */
.hero--center .hero-body { text-align: center; padding-bottom: 100px; }
.hero--center .hero-title { max-width: 680px; margin-left: auto; margin-right: auto; }
.hero--center .hero-desc { max-width: 520px; margin-left: auto; margin-right: auto; }
.hero--center .hero-btns { justify-content: center; }

.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.hero-split-text { display: flex; align-items: center; padding: 120px 60px 80px; background: var(--bg); }
.hero-split-inner { max-width: 480px; }
.hero-split-text h1 { font-size: 36px; font-weight: 800; color: var(--text); line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px; }
.hero-split-text p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 32px; }
.hero-split-img { overflow: hidden; }
.hero-split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .hero-split { grid-template-columns: 1fr; } .hero-split-text { padding: 120px 24px 48px; } .hero-split-img { max-height: 50vh; } .hero-split-text h1 { font-size: 28px; } }

.hero-dark { position: relative; width: 100%; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-dark-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-dark-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; }
.hero-dark-body { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.hero-tag-light { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-bottom: 16px; padding: 8px 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-pill); }
.hero-dark-body h1 { font-size: 42px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.hero-dark-body p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; }
.hero-dark .hero-btns { display: flex; gap: 14px; justify-content: center; }
@media (max-width: 640px) { .hero-dark { min-height: 75vh; } .hero-dark-body h1 { font-size: 28px; } }

/* === Application Grid === */
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.app-card { display: block; transition: all var(--tr); }
.app-card:hover { opacity: 0.92; }
.app-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-alt); border-radius: var(--r); margin-bottom: 12px; }
.app-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.app-card:hover .app-card-img img { transform: scale(1.06); }
.app-card-title { font-size: 15px; font-weight: 600; color: var(--text); }
@media (max-width: 1024px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .apps-grid { grid-template-columns: 1fr; } }

/* === Masonry === */
.masonry-grid { columns: 3; column-gap: 20px; }
.masonry-item { display: block; position: relative; margin-bottom: 20px; break-inside: avoid; border-radius: var(--r); overflow: hidden; }
.masonry-item img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.55)); }
.masonry-cap h3 { font-size: 15px; font-weight: 600; color: var(--white); }
@media (max-width: 768px) { .masonry-grid { columns: 2; } }
@media (max-width: 480px) { .masonry-grid { columns: 1; } }

/* === Tabs === */
.tab-sec { background: var(--bg-alt); border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--border); }
.tab-nav { display: flex; border-bottom: 1px solid var(--border); }
.tab-btn { flex: 1; padding: 18px 20px; font-size: 14px; font-weight: 600; color: var(--text-2); background: transparent; border: none; cursor: pointer; transition: all var(--tr); position: relative; }
.tab-btn:hover { color: var(--text); background: rgba(11,138,138,0.04); }
.tab-btn.active { color: var(--brand); background: var(--bg); }
.tab-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 3px; background: var(--brand); border-radius: 2px 2px 0 0; }
.tab-panels { position: relative; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel-inner { display: grid; grid-template-columns: 1fr 1fr; }
.tab-img { overflow: hidden; }
.tab-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.tab-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.tab-body h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.tab-body p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.tab-body .link { font-size: 14px; font-weight: 600; color: var(--brand); }
@media (max-width: 768px) { .tab-panel-inner { grid-template-columns: 1fr; } .tab-img img { min-height: 200px; } .tab-body { padding: 24px 20px; } }

/* === Accordion === */
.accordion { max-width: 720px; margin: 0 auto; }
.acc-item { border: 1.5px solid var(--border); border-radius: var(--r-sm); margin-bottom: 10px; overflow: hidden; background: var(--bg); transition: border-color var(--tr); }
.acc-item:hover { border-color: rgba(11,138,138,0.3); }
.acc-item.active { border-color: var(--brand); }
.acc-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--text); background: transparent; border: none; cursor: pointer; transition: color var(--tr); }
.acc-header:hover { color: var(--brand); }
.acc-arrow { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.acc-item.active .acc-arrow { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); }
.acc-item.active .acc-body { max-height: 300px; padding: 0 24px 20px; }
.acc-body p { font-size: 14px; color: var(--text-2); line-height: 1.8; }

/* === Timeline === */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.tl-step { text-align: center; position: relative; }
.tl-num { width: 52px; height: 52px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: var(--brand); color: var(--white); font-size: 17px; font-weight: 700; border-radius: 50%; box-shadow: 0 4px 16px rgba(11,138,138,0.25); }
.tl-content h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.tl-content p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 768px) { .timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }

/* === Product List (left image right text) === */
.product-list { display: flex; flex-direction: column; gap: 24px; }
.product-list-item { display: flex; gap: 32px; background: var(--white); border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--border); transition: all var(--tr); }
.product-list-item:hover { border-color: var(--brand); box-shadow: var(--sh-lg); }
.pli-img { width: 40%; flex-shrink: 0; overflow: hidden; }
.pli-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-list-item:hover .pli-img img { transform: scale(1.04); }
.pli-body { display: flex; flex-direction: column; justify-content: center; padding: 28px 32px 28px 0; }
.pli-body h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.pli-body p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.pli-body .link { font-size: 14px; font-weight: 600; color: var(--brand); }
@media (max-width: 768px) { .product-list-item { flex-direction: column; } .pli-img { width: 100%; aspect-ratio: 16/9; } .pli-body { padding: 20px; } }

/* === Bento Grid === */
.bento-grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.bento-item { display: block; position: relative; border-radius: var(--r); overflow: hidden; background: var(--bg); border: 1.5px solid var(--border); transition: all var(--tr); }
.bento-item:hover { border-color: var(--brand); box-shadow: var(--sh-lg); }
.bento-lg { grid-row: 1 / 3; }
.bento-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.6s var(--ease); }
.bento-lg img { height: 100%; min-height: 320px; }
.bento-item:hover img { transform: scale(1.03); }
.bento-body { padding: 22px; }
.bento-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.bento-body p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 768px) { .bento-grid { grid-template-columns: 1fr; } .bento-lg { grid-row: auto; } .bento-lg img { height: 240px; min-height: 0; } }

/* === Split CTA === */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; }
.cta-split-left, .cta-split-right { padding: 72px 48px; text-align: center; }
.cta-split-left { background: var(--brand); }
.cta-split-right { background: var(--text); }
.cta-split-left h2, .cta-split-right h2 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-split-left p, .cta-split-right p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.7; max-width: 380px; margin-left: auto; margin-right: auto; }
.cta-split-right .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }
.cta-split-right .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
@media (max-width: 768px) { .cta-split { grid-template-columns: 1fr; } .cta-split-left, .cta-split-right { padding: 52px 24px; } }

/* === CTA Card === */
.cta-card { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%); border-radius: var(--r); padding: 64px 48px; text-align: center; }
.cta-card h2 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-card p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-card .btn-primary { background: var(--white); color: var(--brand); border-color: var(--white); }
.cta-card .btn-primary:hover { opacity: 0.92; }

/* === Blog List === */
.blog-list { display: flex; flex-direction: column; }
.bl-item { display: flex; align-items: center; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border); transition: all var(--tr); }
.bl-item:first-child { border-top: 1px solid var(--border); }
.bl-item:hover { background: var(--mint-light); padding-left: 16px; padding-right: 16px; border-radius: var(--r-sm); }
.bl-item time { font-size: 13px; color: var(--text-3); flex-shrink: 0; width: 100px; }
.bl-item h3 { font-size: 15px; font-weight: 600; color: var(--text); flex: 1; }
.bl-arrow { font-size: 16px; color: var(--text-3); flex-shrink: 0; }
.bl-item:hover h3 { color: var(--brand); }
@media (max-width: 640px) { .bl-item { flex-wrap: wrap; gap: 4px; } .bl-item time { width: auto; } }

/* === Scrollbar === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* === Selection === */
::selection { background: rgba(11, 138, 138, 0.15); color: var(--text); }

/* ============================================
   SUB-PAGE EXTENDED COMPONENTS
   ============================================ */

/* === Filter Bar === */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; justify-content: center; }
.filter-btn { padding: 10px 24px; font-size: 14px; font-weight: 600; color: var(--text-2); background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-pill); cursor: pointer; transition: all var(--tr); }
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.active { background: var(--brand); color: var(--white); border-color: var(--brand); }
@media (max-width: 640px) { .filter-bar { gap: 8px; } .filter-btn { padding: 8px 16px; font-size: 13px; } }

/* === Feature Grid (3-col icon cards) === */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 36px 28px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); text-align: center; transition: all var(--tr); }
.feature-card:hover { border-color: var(--brand); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.feature-card .f-icon { width: 64px; height: 64px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: var(--mint); border-radius: 50%; transition: all var(--tr); }
.feature-card:hover .f-icon { background: var(--brand); }
.feature-card .f-icon svg { width: 28px; height: 28px; stroke: var(--brand); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--tr); }
.feature-card:hover .f-icon svg { stroke: var(--white); }
.feature-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

/* === Scenario Grid (2-col horizontal cards) === */
.scenario-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.scenario-card { display: flex; overflow: hidden; background: var(--white); border-radius: var(--r); border: 1.5px solid var(--border); transition: all var(--tr); }
.scenario-card:hover { border-color: var(--brand); box-shadow: var(--sh-lg); }
.scenario-card-img { width: 45%; flex-shrink: 0; overflow: hidden; }
.scenario-card-img img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform 0.6s var(--ease); }
.scenario-card:hover .scenario-card-img img { transform: scale(1.05); }
.scenario-card-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.scenario-card-body h4 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.scenario-card-body p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
@media (max-width: 768px) { .scenario-grid { grid-template-columns: 1fr; } .scenario-card { flex-direction: column; } .scenario-card-img { width: 100%; } .scenario-card-img img { min-height: 180px; } }

/* === Team Grid === */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 36px 20px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); transition: all var(--tr); }
.team-card:hover { border-color: var(--brand); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; border: 3px solid var(--mint); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--brand); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

/* === Partner Grid === */
.partner-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.partner-item { display: flex; align-items: center; justify-content: center; padding: 24px 16px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-sm); transition: all var(--tr); min-height: 88px; }
.partner-item:hover { border-color: var(--brand); box-shadow: var(--sh-card); transform: translateY(-2px); }
.partner-item img { max-height: 40px; max-width: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.5); transition: filter var(--tr); }
.partner-item:hover img { filter: grayscale(0%) opacity(1); }
@media (max-width: 1024px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Office Grid === */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.office-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all var(--tr); }
.office-card:hover { border-color: var(--brand); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.office-card-img { aspect-ratio: 16/10; overflow: hidden; }
.office-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.office-card:hover .office-card-img img { transform: scale(1.05); }
.office-card-body { padding: 24px; }
.office-card-body h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.office-card-body p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 4px; }
.office-card-body .addr { font-size: 13px; color: var(--text-3); display: flex; align-items: flex-start; gap: 6px; margin-top: 8px; }
.office-card-body .addr svg { width: 14px; height: 14px; stroke: var(--brand); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 1024px) { .office-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .office-grid { grid-template-columns: 1fr; } }

/* === Newsletter === */
.newsletter-sec { padding: 72px 0; background: var(--mint-light); border-top: 1px solid var(--border); }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-inner h3 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.newsletter-inner > p { font-size: 15px; color: var(--text-2); margin-bottom: 28px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: 1.5px solid var(--border); border-radius: var(--r-pill); font-size: 14px; font-family: inherit; outline: none; background: var(--white); transition: border-color var(--tr); }
.newsletter-form input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(11,138,138,0.1); }
@media (max-width: 640px) { .newsletter-form { flex-direction: column; } }

/* === Article Tags === */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-tags a { padding: 6px 16px; background: var(--mint-light); border: 1px solid var(--border); border-radius: var(--r-pill); font-size: 13px; color: var(--text-2); font-weight: 500; transition: all var(--tr); }
.article-tags a:hover { border-color: var(--brand); color: var(--brand); background: var(--mint); }

/* === Share Bar === */
.share-bar { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.share-bar span { font-size: 13px; color: var(--text-3); font-weight: 600; }
.share-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); border-radius: 50%; font-size: 12px; font-weight: 700; color: var(--text-2); transition: all var(--tr); }
.share-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--mint); }

/* === Solution Detail Block === */
.sol-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.sol-detail:nth-child(even) { direction: rtl; }
.sol-detail:nth-child(even) > * { direction: ltr; }
.sol-detail-img { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); }
.sol-detail-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sol-detail-body h3 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.sol-detail-body > p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.sol-detail-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sol-detail-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.sol-detail-list li svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2; flex-shrink: 0; }
@media (max-width: 1024px) { .sol-detail { grid-template-columns: 1fr; gap: 32px; } .sol-detail:nth-child(even) { direction: ltr; } }

/* === About Values === */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 32px 24px; text-align: center; background: var(--white); border-radius: var(--r); border: 1.5px solid var(--border); transition: all var(--tr); }
.value-card:hover { border-color: var(--brand); box-shadow: var(--sh); transform: translateY(-2px); }
.value-card .v-icon { font-size: 36px; margin-bottom: 16px; line-height: 1; }
.value-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* === Map placeholder === */
.map-placeholder { width: 100%; height: 320px; background: var(--bg-alt); border-radius: var(--r); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 14px; margin-top: 48px; }

/* === Products Grid 4-col === */
.products-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .products-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .products-grid-4 { grid-template-columns: 1fr; } }


/* V2S_MOBILE_MENU_GUARD_CSS */
@media (min-width: 769px) {
  .mobile-toggle,
  .mobile-menu-btn,
  .menu-trigger,
  .v2s-mobile-toggle,
  .mobile-toggle-xl,
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-toggle,
  .mobile-menu-btn,
  .menu-trigger,
  .v2s-mobile-toggle,
  .mobile-toggle-xl,
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-links.active,
  .nav-links.open,
  .nav-menu.active,
  .nav-menu.open,
  .v2s-nav.active,
  .v2s-nav.open,
  .v2s-nav-list.active,
  .v2s-nav-list.open,
  .nav-list.active,
  .nav-list.open {
    display: flex;
  }
}
