/* =========================================================================
   JUKAIE 官网 — 单页样式表
   视觉基准：https://www.gsky.com.tw （白底 + 天蓝强调的企业单页风）
   分区：Tokens / Base / Layout / Navbar / Hero / Hardware / Firmware /
        Software / Contacts / Footer / Back-to-top / Responsive / Motion
   纯 CSS3，零外部依赖，file:// 离线运行
   ========================================================================= */

/* =========================================================================
   0. 字体：Poppins（目标站所用字体）
   本地自托管，SIL OFL 1.1，仅 latin 子集。文件名含上游版本号 v24，
   日后升级字体需同步改这里的 url。
   ========================================================================= */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v24-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v24-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v24-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================================
   1. DESIGN TOKENS
   ========================================================================= */
:root {
  /* 主色：取自目标站的天蓝强调色 */
  --blue: #29abe2;
  --blue-dark: #1b8ec2;
  /* Hardware 卡片底色：取自三张插图 JPG 的实际底色，保证图片与卡片无缝 */
  --blue-soft: #34a4d4;

  /* 导航当前项 / hover 的橙色强调（目标站配色） */
  --accent: #f0a13c;

  /* 中性色。#2b2b2b 为目标站的全站默认文字色（DevTools 实测，
     其 h2 在灰底上对比度 12.09 与该值吻合）。此前用 #4d4d4d 偏浅。 */
  --heading: #2b2b2b;        /* 区块大标题 */
  --text: #2b2b2b;           /* 正文 */
  /* placeholder 在本设计里是字段的唯一可见标识，取到对白底 4.53:1 以满足 WCAG AA */
  --text-light: #767679;
  --white: #ffffff;
  --gray-bg: #ececec;        /* SOFTWARE 区块底 */
  --line: #dcdcdc;           /* 分隔线 / 输入框下划线 */
  --footer-bg: #1a1a1a;      /* 页脚深色条 */

  /* 品牌红：logo 与中文标语 */
  --brand-red: #a4161a;

  /* 状态色 */
  --success: #1f8a5b;
  --error: #d64545;

  /* 与目标站一致的单一字体栈：Poppins → Arial → Helvetica。
     Poppins 已本地自托管（见文件顶部 @font-face），其后补简体中文回退——
     Poppins 不含中文字形，中文由系统字体渲染。
     标题与正文同栈，不再像回退方案那样分裂成两种字体。 */
  --font-sans: "Poppins", Arial, Helvetica, "PingFang SC",
    "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-display: var(--font-sans);

  /* 间距刻度（8pt） */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* 圆角：目标站几乎直角，仅按钮带极小圆角 */
  --radius-sm: 3px;

  /* 容器 */
  /* 目标站内容区实测 1140（三列 × 380）。box-sizing 为 border-box，
     故 max-width 需含左右 padding：1140 + 32×2 = 1204。 */
  --container-max: 1204px;
  --container-pad: clamp(16px, 4vw, 32px);
  --measure: 595px;          /* 表单窄容器（对齐目标站实测宽度） */

  /* 阴影 */
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.1);
  --shadow-nav: 0 1px 6px rgba(0, 0, 0, 0.12);

  /* 动效 */
  --dur-fast: 160ms;
  --dur: 240ms;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --nav-h: 70px;
}

/* =========================================================================
   2. BASE
   ========================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

a:hover {
  color: var(--blue-dark);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
  color: var(--heading);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 焦点可见：不移除 outline，全站统一蓝色轮廓 */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* 跳转链接 */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 10px 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  color: var(--white);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* =========================================================================
   3. LAYOUT
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* 区块纵向节奏：对齐目标站的大留白 */
.section {
  padding-block: clamp(56px, 8vw, 96px);
}

.section-gray {
  background: var(--gray-bg);
}

/* HARDWARE 与 FIRMWARE 之间的细分隔线：对齐内容区而非含 padding 的容器 */
.section-divider {
  height: 1px;
  max-width: 1140px;
  margin: 0 auto;
  background: var(--line);
}

/* 区块头：大写粗标题 + 蓝色副标 */
.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* 桌面 44px / 窄屏 30px（后者为 DevTools 实测值）。
   行高 1：目标站 30px 字号的 h2 元素高度实测也是 30px。 */
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4.4vw, 2.8125rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
}

.section-head .sub {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

/* 窄容器：表单 */
.measure {
  max-width: var(--measure);
  margin-inline: auto;
}

/* 列表则贴合最长一行后居中——固定宽容器会让文字整体偏左，与目标站对不上 */
.bullets.measure {
  width: fit-content;
  max-width: 100%;
}

/* =========================================================================
   4. 蓝点列表（全站复用的核心文本组件）
   ========================================================================= */
/* 17px：以 Poppins 为基准、由目标站文本宽度反推（708px 长句）。
   与卡片标题的 17px 一致——目标站正文统一 17px。 */
.bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.bullets li:last-child {
  margin-bottom: 0;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

/* =========================================================================
   5. NAVBAR
   ========================================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-nav);
  border-bottom-color: var(--line);
}

.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--nav-h);
}

/* 品牌区：logo 徽标 + 两行标语 */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  flex-shrink: 0;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-lines {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

/* 13px 无字距：由目标站文本宽度（英文 160px / 繁中 122px）反推 */
.brand-en {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: normal;
}

.brand-zh {
  font-size: 0.8125rem;
  color: var(--brand-red);
  letter-spacing: normal;
}

/* 导航链接：小字号大写 + 宽字距 */
/* 13.6px + 约 19px 间距：按目标站实测 */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 20px);
}

/* 13.6px 无字距：目标站 "HARDWARE" 实测 78px，恰等于该字号下 Poppins 的裸文本宽度 */
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 6px 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #555;
}

/* 当前项与 hover 均为橙色（目标站配色） */
.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--accent);
}

/* 汉堡按钮（<900px 显示） */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--heading);
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}

.nav-toggle .bars {
  position: relative;
  margin: 0 auto;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .bars::before {
  top: -7px;
}

.nav-toggle .bars::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .bars::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================================
   6. HERO
   ========================================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 62vw, 660px);
  padding-block: clamp(56px, 9vw, 96px);
  text-align: center;
  color: var(--white);
  /* 第一层为实拍照片；缺图时自动回落到下方渐变，页面不塌 */
  background-image: url("../img/alexandr-scaled.jpg"),
    linear-gradient(125deg, #1f4f52 0%, #2f4260 45%, #5a3f63 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2b3a42;
}

/* 暗色遮罩：压住照片保证白字可读，同时保留人物细节（配合标题的 text-shadow） */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  /* vw 系数需大于 h2 的 4.4vw，否则中间视口会出现 H1 比 H2 还小 */
  font-size: clamp(1.875rem, 5vw, 2.875rem);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* 标题下的蓝色横线 */
.hero-rule {
  display: block;
  width: min(800px, 92%);
  height: 3px;
  margin: clamp(20px, 3vw, 32px) auto 0;
  background: var(--blue);
}

/* Desktop / Embedded / Cloud 三支柱 */
.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 8vw, 96px);
  margin-top: clamp(20px, 3vw, 30px);
}

.hero-pillars li {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Hero 内的数据列表：整体居中、文本左对齐 */
.hero-facts {
  display: inline-block;
  margin-top: clamp(32px, 5vw, 56px);
  text-align: left;
}

.hero-facts li {
  color: var(--white);
  font-size: 1.25rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* count-up 期间用等宽数字，避免文字左右跳动 */
.hero-facts .num {
  font-variant-numeric: tabular-nums;
}

/* =========================================================================
   7. HARDWARE — 三张蓝色方案卡
   ========================================================================= */
/* 目标站列宽 370 + 左右各 5px margin。1140 内容区下 gap 取 15 可让列宽正好落在 370 */
.hw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* 卡片 = 10px padding + 298px 内容区 = 318 高，与目标站 317.78 一致。
   标题绝对定位叠在插图顶部的留白上——插图顶部本就为标题留了空白，
   若把标题排在图片上方，卡片会凭空高出约 60px。 */
.hw-card {
  position: relative;
  padding: 10px;
  background: var(--blue-soft);
  color: var(--white);
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.hw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hw-card h3 {
  position: absolute;
  top: 16px;
  left: 10px;
  right: 10px;
  z-index: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* 插图自带与卡片同色的蓝底，两侧留白与卡片融为一体。
   cover 只裁掉上下多余的空白区，不会碰到 "MCU with USB" 等标注。 */
.hw-art img {
  display: block;
  width: min(300px, 100%);
  aspect-ratio: 300 / 298;
  height: auto;
  object-fit: cover;
  margin-inline: auto;
}

/* =========================================================================
   8. FIRMWARE — 灯效动图（彩虹条 + 三个外设，目标站原图）
   ========================================================================= */
.fw-figure {
  max-width: 570px;
  margin: clamp(28px, 4vw, 44px) auto 0;
}

.fw-figure img {
  width: 100%;
  height: auto;
}

/* =========================================================================
   9. SOFTWARE — 架构图 + 键鼠同步动图
   ========================================================================= */
/* 架构图为实拍图，自带浅蓝底与白框，容器不再加背景/描边 */
.arch-figure {
  max-width: 570px;
  margin: clamp(28px, 4vw, 40px) auto;
}

.arch-figure img {
  width: 100%;
  height: auto;
}

.sync-figure {
  max-width: 600px;
  margin: clamp(22px, 3.4vw, 36px) auto 0;
}

.sync-figure img {
  width: 100%;
  margin-inline: auto;
}

/* =========================================================================
   10. CONTACTS — 下划线式表单
   ========================================================================= */
.contact-form {
  max-width: var(--measure);
  margin-inline: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(20px, 3vw, 36px);
}

.field {
  margin-bottom: 26px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 9px 2px;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: border-color var(--dur-fast) var(--ease);
}

/* Message 用完整描边框，与目标站一致 */
.field textarea {
  min-height: 130px;
  padding: 12px;
  border: 1px solid var(--line);
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-light);
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* 校验错误态 */
.field .error-text {
  display: none;
  margin-top: 6px;
  font-size: 0.8125rem;
  color: var(--error);
}

.field.invalid input,
.field.invalid textarea {
  border-color: var(--error);
}

.field.invalid .error-text {
  display: block;
}

.form-actions {
  margin-top: 6px;
}

/* 提交按钮：蓝底白字小方块 */
.btn-submit {
  padding: 11px 24px;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.btn-submit:hover {
  background: var(--blue-dark);
}

.btn-submit:active {
  transform: translateY(1px);
}

/* 表单状态条：发送中 / 成功 / 失败三态 */
.form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  border-left: 3px solid var(--line);
}

.form-status.show {
  display: block;
}

.form-status.is-sending {
  border-left-color: var(--blue);
  background: #eef7fc;
  color: var(--blue-dark);
}

.form-status.is-success {
  border-left-color: var(--success);
  background: #eef8f3;
  color: var(--success);
}

.form-status.is-error {
  border-left-color: var(--error);
  background: #fdf0f0;
  color: var(--error);
}

/* 发送中禁用按钮，避免重复提交 */
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 表单下方的地址 / 电话行 */
.contact-meta {
  max-width: var(--measure);
  margin: clamp(32px, 4vw, 44px) auto 0;
}

.contact-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
}

.contact-meta svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  color: var(--blue);
}

/* 地址链接：常态与 hover 同色（不变蓝）。两个选择器都写出来，
   避免依赖与全局 a:hover 的定义顺序。可点击性由手型光标传达，
   键盘 Tab 的 :focus-visible 轮廓不受影响。 */
.contact-meta a,
.contact-meta a:hover {
  color: var(--text);
}

/* =========================================================================
   11. FOOTER
   ========================================================================= */
.site-footer {
  padding-block: 14px;
  background: var(--footer-bg);
  color: #cfcfcf;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

/* =========================================================================
   12. BACK TO TOP
   ========================================================================= */
/* 36×32 黑底白箭头，按目标站实测（非正方形，且不是主色蓝） */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 36px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: #1a1a1a;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
    visibility var(--dur) var(--ease), background var(--dur-fast) var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #3a3a3a;
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

/* =========================================================================
   13. RESPONSIVE
   ========================================================================= */

/* ≥900px 才展示横排导航；以下折叠为抽屉 */
@media (max-width: 899.98px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    display: none;
    padding: 8px var(--container-pad) 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 0.9375rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    color: var(--accent);
  }
}

@media (min-width: 900px) {
  .nav-menu {
    display: flex !important;
    align-items: center;
    gap: var(--space-4);
  }
}

/* 手机：硬件卡片与表单转单列 */
@media (max-width: 600px) {
  .hw-cards {
    grid-template-columns: 1fr;
  }

  .hw-art svg {
    max-height: 210px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-pillars {
    gap: 20px;
  }

  /* 目标站窄视口下 bullet 约 15px（由其截图中的行宽反推），桌面的 18px 在此处过大 */
  .bullets li {
    font-size: 0.9375rem;
    padding-left: 22px;
  }

  .bullets li::before {
    width: 8px;
    height: 8px;
  }
}

/* 超窄屏 */
@media (max-width: 360px) {
  .brand-en { font-size: 0.75rem; }
  .brand-zh { font-size: 0.6875rem; }
}

/* =========================================================================
   14. MOTION — 滚动淡入 + 减少动效
   ========================================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

.js .reveal.d1 { transition-delay: 90ms; }
.js .reveal.d2 { transition-delay: 180ms; }
.js .reveal.d3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  /* 注意：FIRMWARE 与键鼠同步为 GIF，其内建动画无法用 CSS 停止。
     如需彻底降级，需另备静态首帧图并用 <picture> 的 media 查询切换。 */
}

/* =========================================================================
   15. PRINT
   ========================================================================= */
@media print {
  .navbar,
  .back-to-top {
    display: none !important;
  }

  body {
    color: #000;
  }
}
