:root {
    --steel: #1F3A5F;
    --steel-deep: #16293F;
    --navy: #0D1B2C;
    --ember: #C2410C;
    --ember-bright: #ED6A32;
    --ink: #0E1C2E;
    --text: #4A5A6E;
    --muted: #8A97A8;
    --line: #E6EBF1;
    --bg-soft: #F5F7FA;
    --radius: 12px;
    --shadow-card: rgba(50, 50, 93, 0.12) 0 18px 36px -18px, rgba(0, 0, 0, 0.08) 0 12px 24px -12px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
    font-family: var(--font-sans-tc, 'Noto Sans TC', 'Microsoft JhengHei', sans-serif);
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: rgba(194, 65, 12, 0.18); color: var(--ink); }

a { text-decoration: none; transition: color 0.2s ease; }

.mono-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.mono-num { font-family: 'IBM Plex Mono', monospace; }

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--d, 0ms);
    will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.line-reveal { display: block; overflow: hidden; }
.line-reveal > span {
    display: block;
    transform: translateY(115%);
    animation: lineUp 1s var(--ease-out) forwards;
    animation-delay: var(--d, 0ms);
}
@keyframes lineUp { to { transform: translateY(0); } }

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(14, 28, 46, 0.06);
    transition: transform 0.4s var(--ease-out), box-shadow 0.3s ease;
}
.site-nav.nav-hidden { transform: translateY(-100%); }
.site-nav.scrolled { box-shadow: 0 8px 30px -18px rgba(14, 28, 46, 0.25); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.brand-text small { font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.14em; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links .nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 13px;
    border-radius: 8px;
}
.nav-links .nav-link:hover { color: var(--ink); background: rgba(31, 58, 95, 0.05); }
.nav-links .nav-link.active { color: var(--steel); font-weight: 700; }
.nav-links .nav-link.active::after {
    content: '';
    position: absolute;
    left: 13px; right: 13px; bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: var(--ember);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-contact {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--steel-deep);
    padding: 9px 20px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-contact:hover { color: #fff; background: var(--steel); transform: translateY(-1px); }

.nav-toggle {
    width: 40px; height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span { display: block; width: 16px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease; }

.mobile-nav { background: var(--navy); color: #fff; width: min(360px, 88vw); }
.mobile-nav .offcanvas-header { padding: 22px 26px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mobile-nav .mono-label { color: rgba(255, 255, 255, 0.4); }
.mobile-nav .btn-close { filter: invert(1); opacity: 0.7; }
.mobile-nav .offcanvas-body { padding: 18px 26px 32px; display: flex; flex-direction: column; }
.mobile-link {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 21px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateX(28px);
}
.offcanvas.show .mobile-link { animation: slideIn 0.5s var(--ease-out) forwards; animation-delay: var(--d, 0ms); }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
.mobile-link .mono-num { font-size: 12px; color: rgba(255, 255, 255, 0.35); }
.mobile-link:hover, .mobile-link.active { color: #fff; }
.mobile-link.active .mono-num { color: var(--ember-bright); }
.mobile-nav-foot { margin-top: auto; padding-top: 34px; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-foot .mono-label { margin-bottom: 4px; }
.mobile-nav-foot a { color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.mobile-nav-foot a:hover { color: #fff; }

.hero {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, #12253C 55%, var(--steel-deep) 100%);
    color: #fff;
    padding: 190px 0 0;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
}
.hero-glow {
    position: absolute;
    right: -12%; bottom: -34%;
    width: 62vw; height: 62vw;
    max-width: 860px; max-height: 860px;
    background: radial-gradient(circle, rgba(237, 106, 50, 0.32) 0%, rgba(194, 65, 12, 0.14) 34%, transparent 68%);
    filter: blur(10px);
    animation: glowPulse 7s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.hero-inner { position: relative; }
.hero-eyebrow { color: rgba(255, 255, 255, 0.45); margin-bottom: 22px; }
.hero-title {
    font-size: clamp(2.3rem, 6vw, 4.3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 26px;
}
.hero-title em { font-style: normal; color: var(--ember-bright); }
.hero-sub {
    font-size: clamp(15px, 1.8vw, 17.5px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.62);
    line-height: 2;
    margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 15.5px;
    font-weight: 600;
    color: #fff;
    background: var(--steel-deep);
    border: 1px solid transparent;
    padding: 13px 26px;
    border-radius: 9px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.hero .btn-solid { background: #fff; color: var(--steel-deep); }
.hero .btn-solid:hover { background: #fff; color: var(--navy); }
.btn-solid:hover { color: #fff; background: var(--steel); transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(14, 28, 46, 0.5); }
.btn-solid i { transition: transform 0.25s ease; font-size: 14px; }
.btn-solid:hover i { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 1px solid #D7DEE7;
    padding: 11px 22px;
    border-radius: 9px;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover { border-color: var(--steel); color: var(--steel); transform: translateY(-1px); }
.btn-ghost i { font-size: 13px; transition: transform 0.25s ease; }
.btn-ghost:hover i { transform: translateX(4px); }

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 12px 24px;
    border-radius: 9px;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); color: #fff; }
.btn-ghost-light i { font-size: 13px; }

.hero-specs {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 48px);
    margin-top: 74px;
    padding: 26px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.spec-item { display: flex; flex-direction: column; gap: 5px; }
.spec-item .mono-num { font-size: clamp(18px, 2.2vw, 23px); font-weight: 500; color: #fff; }
.spec-item .mono-num sup { font-size: 0.55em; }
.spec-item small { font-size: 12.5px; color: rgba(255, 255, 255, 0.45); letter-spacing: 0.04em; }
.spec-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.12); }

.hero-scroll {
    position: absolute;
    left: 50%; bottom: 0;
    width: 1px; height: 56px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.hero-scroll span {
    position: absolute;
    top: -40%; left: 0;
    width: 100%; height: 40%;
    background: var(--ember-bright);
    animation: scrollHint 2.2s var(--ease-out) infinite;
}
@keyframes scrollHint { 0% { top: -40%; } 100% { top: 110%; } }

.marquee {
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
    overflow: hidden;
    background: #fff;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    color: var(--muted);
    white-space: nowrap;
}
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--ember); opacity: 0.55; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(66px, 9vw, 112px) 0; }
.section-gray { background: var(--bg-soft); }
.section-eyebrow { display: inline-block; color: var(--ember); margin-bottom: 14px; }
.section-eyebrow.light { color: rgba(255, 255, 255, 0.45); }
.section-title {
    font-size: clamp(1.65rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 18px;
}
.section-title.light { color: #fff; }
.section-text { font-size: 15.5px; line-height: 2.05; color: var(--text); margin-bottom: 26px; max-width: 620px; }
.section-text.light { color: rgba(255, 255, 255, 0.62); }
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(30px, 4vw, 46px);
}
.section-head .section-title { margin-bottom: 0; }

.about-strip { position: relative; }
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat { background: #fff; padding: clamp(24px, 3vw, 38px) clamp(20px, 2.6vw, 34px); }
.stat-num {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 600;
    color: var(--steel);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.stat small { font-size: 13.5px; color: var(--muted); letter-spacing: 0.03em; }

.cat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(18px, 2.2vw, 26px);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.3s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: #D3DCE7; }
.cat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cat-top i { font-size: 23px; color: var(--steel); }
.cat-top .mono-num { font-size: 12px; color: #C3CDD9; }
.cat-card h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.cat-card p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cat-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--steel);
}
.cat-more i { font-size: 12px; transition: transform 0.25s ease; }
.cat-card:hover .cat-more i, .product-card:hover .cat-more i { transform: translateX(4px); }

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.product-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, #EEF2F7, #E3EAF2); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-ph {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(rgba(31, 58, 95, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 58, 95, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
}
.product-ph i { font-size: 44px; color: #C4D0DD; }
.product-ph.tall { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); }
.product-tag {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    padding: 4px 11px;
    border-radius: 7px;
}
.product-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.product-body h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.product-body p { font-size: 13.5px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }

.research-band {
    position: relative;
    background: var(--navy);
    padding: clamp(70px, 9vw, 110px) 0;
    overflow: hidden;
}
.research-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 20% 50%, #000 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 90% at 20% 50%, #000 20%, transparent 70%);
}
.research-band::after {
    content: '';
    position: absolute;
    right: -10%; top: -30%;
    width: 46vw; height: 46vw;
    max-width: 640px; max-height: 640px;
    background: radial-gradient(circle, rgba(237, 106, 50, 0.16) 0%, transparent 62%);
    pointer-events: none;
}
.research-band .container-xl { position: relative; }
.lab-points { display: flex; flex-direction: column; gap: 10px; }
.lab-point {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.lab-point:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.16); }
.lab-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ember-bright); margin-top: 8px; flex-shrink: 0; }
.lab-point strong { display: block; font-size: 16px; color: #fff; margin-bottom: 5px; }
.lab-point p { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); margin: 0; line-height: 1.75; }

.news-list { border-top: 1px solid var(--line); }
.news-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(16px, 3vw, 38px);
    padding: clamp(18px, 2.4vw, 26px) 4px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s ease;
}
.news-row:hover { background: var(--bg-soft); }
.news-date { font-size: 13.5px; color: var(--muted); }
.news-title { font-size: clamp(15px, 1.8vw, 16.5px); font-weight: 600; color: var(--ink); transition: color 0.2s ease; }
.news-row:hover .news-title { color: var(--steel); }
.news-main { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.news-summary { font-size: 13.5px; color: var(--muted); }
.news-arrow { font-size: 15px; color: #C3CDD9; transition: transform 0.25s ease, color 0.25s ease; }
.news-row:hover .news-arrow { transform: translateX(5px); color: var(--ember); }

.cta-band {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(70px, 9vw, 104px) 0;
}
.cta-band .section-text { margin-left: auto; margin-right: auto; }

.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.7); }
.footer-top { padding: clamp(52px, 7vw, 78px) 0 44px; }
.footer-brand { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.footer-brand strong { font-size: 18px; color: #fff; letter-spacing: 0.01em; }
.footer-brand .mono-label { color: rgba(255, 255, 255, 0.32); font-size: 10.5px; }
.footer-desc { font-size: 13.5px; line-height: 1.95; color: rgba(255, 255, 255, 0.5); max-width: 340px; }
.footer-title { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.38); margin-bottom: 16px; }
.site-footer a { display: block; font-size: 14px; color: rgba(255, 255, 255, 0.72); margin-bottom: 11px; }
.site-footer a:hover { color: #fff; }
.footer-contact span { display: flex; align-items: baseline; gap: 10px; font-size: 14px; margin-bottom: 11px; }
.footer-contact i { font-size: 13px; color: rgba(255, 255, 255, 0.35); }
.footer-contact a { display: inline; margin-bottom: 0; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 22px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom .mono-label { font-size: 10.5px; color: rgba(255, 255, 255, 0.25); }

.page-hero {
    position: relative;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 158px 0 58px;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(31, 58, 95, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 58, 95, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 100% at 80% 0%, #000 10%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 100% at 80% 0%, #000 10%, transparent 70%);
}
.page-hero .container-xl { position: relative; }
.page-hero.dark { background: linear-gradient(150deg, var(--navy), var(--steel-deep)); border-bottom: none; }
.page-hero.compact { padding: 140px 0 46px; }
.page-title {
    font-size: clamp(2rem, 4.6vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
}
.page-title.light { color: #fff; }
.page-lead { font-size: clamp(15px, 1.8vw, 17px); color: var(--muted); margin: 0; }
.page-lead.light { color: rgba(255, 255, 255, 0.55); }

.crumbs { display: flex; align-items: center; gap: 9px; font-size: 13px; margin-bottom: 20px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--steel); }
.crumbs i { font-size: 10px; color: #C3CDD9; }

.value-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(22px, 2.6vw, 30px);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.value-card .mono-num { font-size: 14px; font-weight: 500; color: var(--ember); }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 12px 0 10px; letter-spacing: -0.01em; }
.value-card p { font-size: 14px; line-height: 1.85; color: var(--text); margin: 0; }

.timeline { position: relative; padding-left: 4px; }
.tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: clamp(18px, 3vw, 40px);
    padding: 26px 0 26px 26px;
    border-left: 1px solid var(--line);
}
.tl-item::before {
    content: '';
    position: absolute;
    left: -4.5px; top: 38px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ember);
}
.tl-year { font-size: 15px; font-weight: 600; color: var(--steel); padding-top: 2px; }
.tl-body strong { display: block; font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.tl-body p { font-size: 14px; color: var(--text); line-height: 1.85; margin: 0; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.6vw, 30px); }
.p-step { border-top: 1px solid var(--line); padding-top: 22px; }
.p-step .mono-num { display: block; font-size: 21px; font-weight: 500; color: var(--steel); margin-bottom: 14px; }
.p-step strong { display: block; font-size: 16.5px; color: var(--ink); margin-bottom: 7px; }
.p-step p { font-size: 13.5px; color: var(--muted); line-height: 1.8; margin: 0; }

.patent-list { border-top: 1px solid var(--line); }
.patent-row {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.2vw, 24px);
    padding: 19px 4px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s ease;
}
.patent-row:hover { background: var(--bg-soft); }
.patent-row > .mono-num { font-size: 12px; color: var(--muted); width: 42px; flex-shrink: 0; }
.patent-row > div { flex: 1; min-width: 0; }
.patent-row strong { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 3px; }
.patent-row small { font-size: 12.5px; color: var(--muted); }
.patent-badge {
    font-size: 12px;
    color: var(--muted);
    border: 1px solid #D7DEE7;
    border-radius: 999px;
    padding: 3px 12px;
    flex-shrink: 0;
}

.text-note { font-size: 13px; color: var(--muted); }
.text-note a { color: var(--steel); border-bottom: 1px solid rgba(31, 58, 95, 0.3); }

.dl-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.dl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.dl-icon {
    width: 46px; height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: 10px;
    flex-shrink: 0;
}
.dl-icon i { font-size: 21px; color: var(--ember); }
.dl-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.dl-body strong { font-size: 15.5px; color: var(--ink); }
.dl-body small { font-size: 11.5px; color: var(--muted); }
.dl-action {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}
.dl-card:hover .dl-action { background: var(--steel-deep); border-color: var(--steel-deep); color: #fff; }

.contact-info { border-top: 1px solid var(--line); }
.ci-item { padding: 17px 2px; border-bottom: 1px solid var(--line); }
.ci-item .mono-label { font-size: 10.5px; }
.ci-value { display: block; font-size: 16.5px; color: var(--ink); margin-top: 5px; font-weight: 500; }
a.ci-value:hover { color: var(--steel); }

.contact-form .form-label { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.contact-form .req { color: var(--ember); }
.contact-form .form-control {
    border: 1px solid #D7DEE7;
    border-radius: 9px;
    padding: 11px 15px;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-control::placeholder { color: #B5BfCB; font-size: 14px; }
.contact-form .form-control:focus { border-color: var(--steel); box-shadow: 0 0 0 4px rgba(31, 58, 95, 0.09); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-result { margin-top: 12px; font-size: 14px; display: none; }
.form-result.ok { display: block; color: #0F7B4D; }
.form-result.err { display: block; color: var(--ember); }

.cat-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 10px; }
.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 16px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.cat-chip:hover { border-color: var(--steel); color: var(--steel); }
.cat-chip.active { background: var(--steel-deep); border-color: var(--steel-deep); color: #fff; }
.chip-count { font-size: 11px; color: var(--muted); }
.cat-chip.active .chip-count { color: rgba(255, 255, 255, 0.6); }

.empty-state { text-align: center; padding: 90px 0; }
.empty-state i { font-size: 42px; color: #C3CDD9; display: block; margin-bottom: 16px; }
.empty-state p { color: var(--muted); margin-bottom: 22px; }

.detail-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.detail-media img { width: 100%; display: block; }
.detail-cta { margin-top: 18px; }

.rich-content { font-size: 15.5px; line-height: 2.1; color: var(--text); }
.rich-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 38px 0 14px;
    padding-left: 14px;
    border-left: 3px solid var(--ember);
}
.rich-content h3:first-child { margin-top: 0; }
.rich-content p { margin-bottom: 16px; }
.rich-content ul { padding-left: 4px; list-style: none; margin-bottom: 16px; }
.rich-content ul li { position: relative; padding-left: 22px; margin-bottom: 9px; }
.rich-content ul li::before {
    content: '';
    position: absolute;
    left: 2px; top: 13px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--steel);
    opacity: 0.55;
}
.rich-content img { max-width: 100%; height: auto; border-radius: 10px; }

.news-detail-date { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.news-cover { width: 100%; border-radius: var(--radius); margin-bottom: 30px; }
.news-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 52px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}
.nn-link { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 14px; max-width: 34%; }
.nn-link small { display: block; font-size: 11.5px; color: var(--muted); margin-bottom: 2px; }
.nn-link:hover { color: var(--steel); }
.nn-link i { font-size: 14px; color: #C3CDD9; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 24px;
    transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-card); }
.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink);
    padding: 19px 0;
    cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { font-size: 14px; color: var(--muted); transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(45deg); color: var(--ember); }
.faq-item p { font-size: 14.5px; line-height: 1.95; color: var(--text); margin: 0; padding: 0 0 20px; }

.error-page { padding: 180px 0 140px; }
.error-code { font-size: clamp(70px, 12vw, 110px); font-weight: 600; color: var(--steel); opacity: 0.16; line-height: 1; margin-bottom: 6px; }
.error-page .section-text { margin-left: auto; margin-right: auto; }

@media (max-width: 991.98px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .hero { padding-top: 158px; }
    .hero-specs { flex-wrap: wrap; row-gap: 18px; margin-top: 52px; }
    .spec-divider { display: none; }
    .spec-item { min-width: 40%; }
    .footer-desc { max-width: none; }
}

@media (max-width: 767.98px) {
    .nav-inner { height: 64px; }
    .brand-mark { width: 30px; height: 30px; }
    .brand-text strong { font-size: 15.5px; }
    .brand-text small { font-size: 8px; }
    .page-hero { padding: 122px 0 42px; }
    .page-hero.compact { padding: 112px 0 36px; }
    .hero { padding-top: 128px; }
    .hero-sub br { display: none; }
    .hero-specs { gap: 16px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
    .news-row { grid-template-columns: 1fr auto; }
    .news-date { grid-column: 1 / -1; font-size: 12.5px; }
    .process-steps { grid-template-columns: 1fr; }
    .tl-item { grid-template-columns: 1fr; gap: 6px; padding-left: 22px; }
    .news-nav { flex-wrap: wrap; }
    .nn-link { max-width: 46%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cat-filter { gap: 7px; }
    .cat-chip { font-size: 12.5px; padding: 6px 13px; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .line-reveal > span { transform: none; animation: none; }
    .marquee-track, .hero-glow, .hero-scroll span { animation: none; }
    .hero-slide { animation: none !important; }
    * { transition-duration: 0.01ms !important; }
}

picture { display: contents; }

.brand-logo { height: 42px; width: auto; display: block; }
.brand-logo-mark { display: none; height: 40px; width: auto; }
.site-nav.scrolled .brand-logo { height: 38px; }
.footer-logo { height: 46px; width: auto; margin-bottom: 16px; }

@media (max-width: 575.98px) {
    .brand-logo { display: none; }
    .brand-logo-mark { display: block; height: 38px; }
    .footer-logo { height: 40px; }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 2000;
    background: var(--steel);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
}
.skip-link:focus { left: 16px; color: #fff; }

.nav-drop { position: relative; display: flex; align-items: center; }
.nav-caret { font-size: 9px; margin-left: 5px; opacity: 0.5; transition: transform 0.25s var(--ease-out); }
.nav-drop:hover .nav-caret { transform: rotate(180deg); opacity: 0.85; }
.nav-drop-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), visibility 0.22s;
    z-index: 60;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.nav-drop.is-dismissed .nav-drop-menu {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
}
.nav-drop.open .nav-caret { transform: rotate(180deg); opacity: 0.85; }
.nav-caret {
    padding: 6px;
    margin: -6px -6px -6px 0;
    cursor: pointer;
}
.nav-drop-menu a {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    color: var(--text);
    border-radius: 8px;
    white-space: nowrap;
}
.nav-drop-menu a:hover { background: var(--bg-soft); color: var(--steel); }
.nav-drop-menu a.active { color: var(--ember); font-weight: 500; }
.nav-drop-wide {
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px 6px;
}

.lang-switch { position: relative; }
.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-current:hover { border-color: #C9D4E0; color: var(--steel); }
.lang-current i { font-size: 14px; opacity: 0.6; }
.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 156px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 7px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
    z-index: 70;
}
.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu,
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch.is-dismissed .lang-menu { opacity: 0; visibility: hidden; transform: translateY(6px); }
.lang-menu a {
    display: block;
    padding: 8px 13px;
    font-size: 13.5px;
    color: var(--text);
    border-radius: 7px;
}
.lang-menu a:hover { background: var(--bg-soft); color: var(--steel); }
.lang-menu a.active { color: var(--ember); font-weight: 500; }

.mobile-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    padding: 2px 0 14px 34px;
}
.mobile-sub a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.58);
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    line-height: 1.4;
}
.mobile-sub a:hover, .mobile-sub a.active { color: #fff; border-color: rgba(255, 255, 255, 0.4); }

.mobile-lang { padding: 18px 0 6px; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 14px; }
.mobile-lang .mono-label { color: rgba(255, 255, 255, 0.4); display: block; margin-bottom: 10px; }
.mobile-lang-links { display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-lang-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}
.mobile-lang-links a.active { color: var(--ember-bright); border-color: rgba(237, 106, 50, 0.5); }

.hero-slides { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s var(--ease-out);
}
.hero-slide.is-active { opacity: 0.26; }

.cat-card { display: block; overflow: hidden; }
.cat-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
    overflow: hidden;
    border-radius: calc(var(--radius) - 2px);
}
.cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.cat-card:hover .cat-media img { transform: scale(1.05); }
.cat-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #C3CDD9;
    font-size: 28px;
}
.cat-index {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 11px;
    color: #fff;
    background: rgba(13, 27, 44, 0.55);
    backdrop-filter: blur(4px);
    padding: 3px 8px;
    border-radius: 6px;
}
.cat-body { padding: 15px 4px 4px; }
.cat-body h2, .cat-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.5;
}

.product-spec-line {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 12px;
}

.spec-table {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}
.spec-table-head {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 20px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.spec-table-head i { color: var(--ember); font-size: 15px; }
.spec-table dl { margin: 0; }
.spec-row {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 14px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: none; }
.spec-table dt { font-size: 13.5px; font-weight: 500; color: var(--muted); margin: 0; }
.spec-table dd { font-size: 14.5px; color: var(--ink); margin: 0; line-height: 1.7; }
.spec-table dd.spec-full { grid-column: 1 / -1; color: var(--text); }

.detail-thumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 12px; }
.detail-thumb {
    width: 74px;
    height: 56px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumb.is-active, .detail-thumb:hover { border-color: var(--ember); }

.timeline {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 40px;
    box-shadow: var(--shadow-card);
}
.milestones { list-style: none; margin: 0; padding: 0; position: relative; }
.milestones::before {
    content: '';
    position: absolute;
    left: 84px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--line);
}
.milestones li {
    position: relative;
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 26px;
    padding: 14px 0;
}
.milestones li::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 22px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--ember);
}
.ms-year {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: var(--steel);
    font-weight: 500;
    text-align: right;
    padding-top: 1px;
}
.ms-text { font-size: 15px; color: var(--ink); line-height: 1.7; }

.about-facts {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 26px 22px;
    position: sticky;
    top: 100px;
}
.about-facts .fact { padding: 13px 0; border-bottom: 1px solid var(--line); }
.about-facts .fact:last-of-type { border-bottom: none; }
.fact-num {
    display: block;
    font-size: 26px;
    font-weight: 500;
    color: var(--steel);
    line-height: 1.25;
}
.fact-num .unit { font-size: 15px; margin-left: 2px; }
.about-facts .fact small { font-size: 13px; color: var(--muted); }
.stat-num .unit { font-size: 16px; }

.cert-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}
.cert-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.cert-media { aspect-ratio: 3 / 4; background: var(--bg-soft); overflow: hidden; }
.cert-media img { width: 100%; height: 100%; object-fit: cover; }
.cert-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid var(--line);
}
.cert-body .mono-num, .cert-title { font-size: 13px; color: var(--ink); }
.cert-view { font-size: 12.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.cert-card:hover .cert-view { color: var(--ember); }

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--navy);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.map-section { height: 420px; filter: grayscale(0.25); }
.map-section iframe { width: 100%; height: 100%; border: 0; display: block; }

.ci-office { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.ci-office:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-office-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--steel);
    background: rgba(31, 58, 95, 0.07);
    padding: 4px 11px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.form-heading { font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 18px; }
.form-label .opt { font-size: 12px; color: var(--muted); font-weight: 400; margin-left: 3px; }

.footer-lang { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.footer-lang a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 4px 12px;
}
.footer-lang a:hover { color: rgba(255, 255, 255, 0.85); }
.footer-lang a.active { color: var(--ember-bright); border-color: rgba(237, 106, 50, 0.45); }
.footer-privacy { font-size: 12.5px; color: rgba(255, 255, 255, 0.45); }
.footer-privacy:hover { color: rgba(255, 255, 255, 0.75); }

.rich-content.narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.rich-content h1 { font-size: 24px; font-weight: 700; color: var(--ink); margin: 40px 0 14px; }
.rich-content h1:first-child { margin-top: 0; }

.rich-content h2 {
    font-size: 21px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 52px 0 4px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.rich-content h2:first-child { margin-top: 0; }
.rich-content h4 {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text);
    line-height: 2;
    margin: 0;
}
.rich-content li > h4 { display: inline; }
.rich-content ul { padding-left: 20px; }
.rich-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.rich-content table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.rich-content th, .rich-content td { border: 1px solid var(--line); padding: 10px 14px; font-size: 14.5px; }

@media (max-width: 991.98px) {
    .about-facts { position: static; }
    .nav-drop-wide { min-width: 0; grid-template-columns: 1fr; }
    .map-section { height: 320px; }
}

@media (max-width: 767.98px) {
    .row.g-5, .row.g-4 { --bs-gutter-x: 1.5rem; }
    .mobile-lang-links a { padding: 9px 15px; }
    .spec-row { grid-template-columns: 106px 1fr; gap: 10px; padding: 11px 15px; }
    .timeline { padding: 18px 20px; }
    .milestones::before { left: 8px; }
    .milestones li { grid-template-columns: 1fr; gap: 3px; padding-left: 30px; }
    .milestones li::before { left: 4px; top: 20px; }
    .ms-year { text-align: left; font-size: 13px; }
    .cat-body h2, .cat-body h3 { font-size: 14px; }
    .map-section { height: 260px; }
}
