/* ═══════════════════════════════════
   HRAI 品牌設計系統
   ═══════════════════════════════════ */

/* ── 品牌變數 ── */
:root {
  --c-teal:        #45A898;
  --c-teal-dark:   #357F71;
  --c-orange:      #F28830;
  --c-orange-dark: #D4701E;
  --c-bg:          #FFFFFF;
  --c-bg-soft:     #F7FAFA;
  --c-text:        #1F2937;
  --c-muted:       #6B7280;
  --c-border:      #E5E7EB;
  --radius:        12px;
  --shadow:        0 4px 24px rgba(69,168,152,.12);
}

/* ── 全域 ── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; position: relative; min-height: 100%; }
body {
  font-family: "Noto Sans TC","PingFang TC","Microsoft JhengHei",system-ui,sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  margin: 0;
}
h1,h2,h3,h4,h5 { font-weight: 700; }
a { text-decoration: none; }
img { max-width: 100%; }
section { padding: 80px 0; }

/* ════════════════════════════════════
   導覽列
   ════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;   /* Logo 靠左，其餘全部推到右側 */
}
.nav-logo img { height: 36px; }
.nav-logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-teal);
}

/* ── 桌機選單 ── */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex: 1;
  height: 64px;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item + .nav-item { border-left: 1px solid var(--c-border); }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  height: 100%;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  transition: color .2s;
}
/* hover 底線動畫 */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--c-teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s;
}
.nav-item:hover > .nav-link,
.nav-item.active > .nav-link { color: var(--c-teal); }
.nav-item:hover > .nav-link::after,
.nav-item.active > .nav-link::after { transform: scaleX(1); }

/* chevron 旋轉 */
.nav-chevron {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform .2s;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* ── 下拉選單 ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 160px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility 0s .2s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .2s, transform .2s, visibility 0s;
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.dropdown-link:hover {
  background: rgba(69,168,152,.08);
  color: var(--c-teal);
}
.dropdown-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-teal);
  flex-shrink: 0;
}

/* ── Nav 右側 ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: 24px;   /* 選單與按鈕之間的間距 */
}
.nav-cta {
  background: var(--c-teal);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--c-teal-dark); color: #fff; }

/* ── 漢堡按鈕（手機） ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 手機展開選單 ── */
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--c-border);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu-item {
  display: block;
  padding: 14px 24px;
  color: var(--c-text);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--c-border);
  transition: color .15s, background .15s;
}
.mobile-menu-item:hover { color: var(--c-teal); background: rgba(69,168,152,.04); }
.mobile-sub-item {
  display: block;
  padding: 12px 24px 12px 42px;
  color: var(--c-muted);
  font-size: 14px;
  border-bottom: 1px solid var(--c-border);
  transition: color .15s, background .15s;
}
.mobile-sub-item:hover { color: var(--c-teal); background: rgba(69,168,152,.04); }
.mobile-cta-wrap { padding: 16px 24px; }
.mobile-cta-btn {
  display: block;
  background: var(--c-teal);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
}
.mobile-cta-btn:hover { background: var(--c-teal-dark); color: #fff; }

/* ════════════════════════════════════
   Hero Banner
   ════════════════════════════════════ */
.hero {
  margin-top: 64px;
  padding: 0;          /* 覆蓋 section { padding: 80px 0 } 的全域規則 */
  position: relative;
  overflow: hidden;
  line-height: 0;      /* 消除 img 底部 inline gap */
}
.hero-bg {
  width: 100%;
  display: block;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-text {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
  line-height: normal;
}
.hero-text-box { max-width: 46%; }

/* eyebrow 小標籤 */
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-teal);
  text-transform: uppercase;
  background: rgba(69,168,152,.1);
  border: 1px solid rgba(69,168,152,.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero-h1 {
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 10px;
}
/* 主標第二行：整合 · 安全 · 有溫度 */
.hero-h1-sub {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--c-teal);
  letter-spacing: .04em;
}

.hero-desc {
  font-size: clamp(12px, 1.1vw, 14px);
  color: #4B5563;
  margin: 0 0 26px;
  line-height: 1.8;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-teal);
  color: #fff;
  padding: 11px 20px 11px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, gap .2s;
}
.btn-hero:hover { background: var(--c-teal-dark); color: #fff; gap: 14px; }
.btn-hero-arrow {
  width: 24px; height: 24px;
  background: rgba(255,255,255,.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1;
}

/* ════════════════════════════════════
   品牌帶
   ════════════════════════════════════ */
.brand-strip { background: var(--c-teal); padding: 22px 0; }
.strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 48px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.strip-item {
  color: rgba(255,255,255,.9); font-size: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.strip-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-orange); }

/* ════════════════════════════════════
   Section 共用標頭
   ════════════════════════════════════ */
.sec-label {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  color: var(--c-teal); text-transform: uppercase; margin-bottom: 10px;
}
.sec-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.sec-desc { color: var(--c-muted); font-size: 16px; line-height: 1.7; max-width: 560px; }
.section-num {
  font-size: 11px; font-weight: 800; letter-spacing: .15em;
  color: var(--c-muted); opacity: .5; margin-bottom: 6px;
}

/* ════════════════════════════════════
   功能小卡
   ════════════════════════════════════ */
.features { background: var(--c-bg); }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .sec-desc { margin: 0 auto; }

.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.feat-card {
  border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  position: relative; overflow: hidden; background: var(--c-bg);
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--c-teal), var(--c-orange));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.feat-card:hover { box-shadow: var(--shadow); border-color: var(--c-teal); transform: translateY(-4px); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.icon-teal  { background: rgba(69,168,152,.12); color: var(--c-teal); }
.icon-orange { background: rgba(242,136,48,.12); color: var(--c-orange); }
.feat-card h3 { font-size: 18px; margin-bottom: 10px; }
.feat-card p  { color: var(--c-muted); font-size: 14px; line-height: 1.7; margin: 0; }
.feat-tag {
  display: inline-block; margin-top: 16px;
  background: var(--c-bg-soft); border: 1px solid var(--c-border);
  color: var(--c-muted); padding: 3px 10px; border-radius: 999px; font-size: 12px;
}

/* ════════════════════════════════════
   功能大區塊（交錯排列）
   ════════════════════════════════════ */
.feature-block { padding: 80px 0; }
.feature-block:nth-child(even) { background: var(--c-bg-soft); }
.feature-block .row { align-items: center; }
.feature-block .visual {
  background: linear-gradient(135deg, var(--c-bg-soft), rgba(69,168,152,.08));
  border: 1px solid var(--c-border); border-radius: 20px;
  min-height: 340px; display: flex; align-items: center; justify-content: center;
  padding: 32px; position: relative; overflow: hidden;
}
.feature-block .visual::after {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(69,168,152,.15), transparent);
}

/* Mock UI 元件 */
.mock-chat { width: 100%; max-width: 380px; }
.mock-msg {
  padding: 10px 16px; border-radius: 12px; font-size: 13px; line-height: 1.5;
  margin-bottom: 10px; max-width: 88%;
}
.mock-msg.user {
  background: var(--c-teal); color: #fff;
  margin-left: auto; border-bottom-right-radius: 4px;
}
.mock-msg.ai {
  background: #fff; border: 1px solid var(--c-border);
  border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.mock-msg.ai .source { font-size: 11px; color: var(--c-teal); margin-top: 6px; }

.mock-consultants { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 380px; }
.con-item {
  background: #fff; border: 1px solid var(--c-border); border-radius: 12px;
  padding: 12px 16px; display: flex; align-items: flex-start; gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.con-avatar {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.con-name  { font-size: 12px; font-weight: 700; margin-bottom: 3px; }
.con-text  { font-size: 12px; color: var(--c-muted); line-height: 1.5; }

.mock-perf { width: 100%; max-width: 360px; }
.perf-bar-item { margin-bottom: 14px; }
.perf-bar-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.perf-bar-track { height: 8px; background: var(--c-border); border-radius: 999px; overflow: hidden; }
.perf-bar-fill  { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--c-teal), var(--c-orange)); }

/* ════════════════════════════════════
   AI 學堂
   ════════════════════════════════════ */
.academy { background: var(--c-bg); }
.academy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.article-card {
  border: 1px solid var(--c-border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.article-thumb {
  height: 180px; display: flex; align-items: center;
  justify-content: center; font-size: 48px;
}
.thumb-teal   { background: linear-gradient(135deg, rgba(69,168,152,.15), rgba(69,168,152,.05)); color: var(--c-teal); }
.thumb-orange { background: linear-gradient(135deg, rgba(242,136,48,.15), rgba(242,136,48,.05)); color: var(--c-orange); }
.thumb-mixed  { background: linear-gradient(135deg, rgba(69,168,152,.1), rgba(242,136,48,.1)); color: var(--c-teal); }
.article-body { padding: 22px 24px; }
.article-tag  { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--c-teal); margin-bottom: 8px; display: block; }
.article-card h4 { font-size: 16px; margin-bottom: 8px; line-height: 1.5; }
.article-card p  { font-size: 13px; color: var(--c-muted); line-height: 1.6; margin: 0; }
.article-footer {
  padding: 14px 24px; border-top: 1px solid var(--c-border);
  display: flex; justify-content: space-between; align-items: center;
}
.article-date { font-size: 12px; color: var(--c-muted); }
.article-link { font-size: 13px; color: var(--c-teal); font-weight: 600; }
.article-link:hover { color: var(--c-teal-dark); }

/* ════════════════════════════════════
   CTA 區塊
   ════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 50%, #1a4a3e 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(242,136,48,.2), transparent);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--c-teal); padding: 14px 36px;
  border-radius: 10px; font-weight: 700; font-size: 16px; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.15); transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); color: var(--c-teal); }
.btn-outline-white {
  background: transparent; color: #fff; padding: 14px 36px;
  border-radius: 10px; font-weight: 600; font-size: 16px;
  border: 1.5px solid rgba(255,255,255,.5); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ════════════════════════════════════
   比較表
   ════════════════════════════════════ */
.compare-section { background: var(--c-bg-soft); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th {
  background: var(--c-teal); color: #fff; padding: 14px 18px;
  text-align: left; font-weight: 600;
}
.compare-table th:last-child { background: linear-gradient(135deg, var(--c-teal), var(--c-orange)); }
.compare-table td { padding: 12px 18px; border-bottom: 1px solid var(--c-border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(69,168,152,.04); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--c-border); }
.check { color: var(--c-teal); font-size: 16px; font-weight: 700; }
.cross { color: #D1D5DB; font-size: 16px; }

/* ════════════════════════════════════
   Footer
   ════════════════════════════════════ */
.site-footer {
  background: #0f1f1c;
  color: rgba(255,255,255,.6);
  padding: 48px 0 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; margin-bottom: 40px;
}
.footer-logo-text { font-size: 24px; font-weight: 900; color: var(--c-teal); margin-bottom: 6px; }
.footer-brand-en  { font-size: 12px; color: var(--c-teal); opacity: .85; font-weight: 600; letter-spacing: .02em; margin-bottom: 2px; }
.footer-brand-zh  { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand-desc {
  font-size: 12.5px; color: rgba(255,255,255,.5);
  line-height: 1.9; max-width: 260px;
}
.footer-brand-desc strong { color: var(--c-teal); font-weight: 700; }
.footer-links h5 { color: #fff; font-size: 13px; margin-bottom: 14px; font-weight: 700; }
.footer-links ul  { list-style: none; padding: 0; margin: 0; }
.footer-links li  { margin-bottom: 8px; }
.footer-links a   { color: rgba(255,255,255,.55); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--c-teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px; font-size: 12px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ════════════════════════════════════
   Logo 跑馬燈
   ════════════════════════════════════ */
.logo-section {
  padding: 40px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.logo-section-header {
  text-align: center;
  margin-bottom: 28px;
}
.logo-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(69,168,152,.08);
  color: var(--c-teal);
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.logo-marquee-wrap {
  overflow: hidden;
  position: relative;
}
.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.logo-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--c-bg), transparent);
}
.logo-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--c-bg), transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  padding: 8px 0;
  animation: logo-scroll 28s linear infinite;
}
.logo-marquee-track:hover { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-item img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter .3s, opacity .3s;
}
.logo-item img:hover { filter: none; opacity: 1; }

/* ════════════════════════════════════
   顧問標籤
   ════════════════════════════════════ */
.con-tag {
  background: rgba(69,168,152,.1); color: var(--c-teal);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.con-tag.orange { background: rgba(242,136,48,.1); color: var(--c-orange); }

/* ════════════════════════════════════
   RWD
   ════════════════════════════════════ */

/* ── main 消除預設邊距 ── */
main { display: block; padding: 0; margin: 0; }

/* 平板（≤ 767px） */
@media (max-width: 767px) {
  section { padding: 60px 0; }
  .strip-inner { gap: 20px; }
  .feature-block { padding: 60px 0; }

  /* Nav：隱藏桌機選單，顯示漢堡 */
  .nav-menu  { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero：固定高度 cover，左側白霧遮罩保文字可讀 */
  .hero { margin-top: 56px; }
  .hero-bg {
    min-height: 320px;
    object-fit: cover;
    object-position: right center;
  }
  .hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(228,244,240,.92) 0%,
      rgba(228,244,240,.82) 45%,
      rgba(228,244,240,.30) 70%,
      transparent 100%
    );
    pointer-events: none;
  }
  .hero-text-box { max-width: 65%; }
  .hero-h1 { font-size: clamp(1.25rem, 4.5vw, 1.7rem); }
  .hero-desc { font-size: 13px; }
}

/* 手機（≤ 480px） */
@media (max-width: 480px) {
  .hero-bg {
    min-height: 260px;
    object-position: 72% center;
  }
  .hero-text { padding: 0 6%; }
  .hero-text-box { max-width: 78%; }
  .hero-h1 { font-size: 1.15rem; }
  .hero-desc { font-size: 12px; margin-bottom: 18px; }
  .btn-hero { font-size: 13px; padding: 10px 18px 10px 20px; }
}
