/* ========================================
   株式会社Apps - Single Page (Modern)
   Brand colors (固定順): Red → Green → Blue → Yellow
   --c1: #DB3136 (Red)
   --c2: #3CBA54 (Green)
   --c3: #4885ED (Blue)
   --c4: #F4C20C (Yellow)
   ======================================== */

:root {
  --c1: #DB3136;
  --c2: #3CBA54;
  --c3: #4885ED;
  --c4: #F4C20C;
  --ink: #0e0e10;
  --ink-2: #2a2a2e;
  --mute: #6b6b72;
  --line: #ececec;
  --bg: #fafafa;
  --bg-card: #ffffff;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 76px; /* スティッキーヘッダー分 */
}

body {
  margin: 0;
  font-family: "Helvetica Neue", "Arial",
               "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN",
               "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
a:hover { color: var(--c1); }

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .04em;
}

p { margin: 0 0 1.2em; }

/* ===== Layout ===== */
.inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   4色ブランドバー
   ======================================== */
.brand-bar {
  display: flex;
  width: 100%;
  height: 4px;
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
}
.brand-bar span { flex: 1; }
.brand-bar span:nth-child(1) { background: var(--c1); }
.brand-bar span:nth-child(2) { background: var(--c2); }
.brand-bar span:nth-child(3) { background: var(--c3); }
.brand-bar span:nth-child(4) { background: var(--c4); }

/* ========================================
   ヘッダー（フローティング・ガラス）
   ======================================== */
.site-header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: -.04em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.brand-logo a {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.brand-logo a:hover { opacity: .75; color: inherit; }
.brand-logo .l-a  { color: var(--c1); }
.brand-logo .l-p1 { color: var(--c2); }
.brand-logo .l-p2 { color: var(--c3); }
.brand-logo .l-s  { color: var(--c4); }
.brand-logo .corp {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: .7rem;
  color: var(--mute);
  letter-spacing: .15em;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}

/* グローバルナビ */
.global-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-nav a {
  display: block;
  padding: 8px 14px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink-2);
  letter-spacing: .12em;
  position: relative;
}
.global-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: width .25s ease;
}
.global-nav a:hover::after,
.global-nav a.is-active::after { width: calc(100% - 28px); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #ddd;
  color: var(--ink);
  font-size: .78rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .15em;
}

/* ========================================
   Hero（明るく親しみやすい・4色 blob 浮遊）
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at top left, #fff5e9 0%, transparent 50%),
    radial-gradient(ellipse at top right, #eaf4ff 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, #eaf9ee 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, #fef5d8 0%, transparent 55%),
    #fdfdfb;
}
/* 大きな blob たち */
.hero .blob {
  filter: blur(70px);
  opacity: .55;
}
.hero .blob.b1 { width: 380px; height: 380px; top: -60px;  left: -40px; }
.hero .blob.b2 { width: 320px; height: 320px; top: 20%;    right: -80px; animation-duration: 22s; }
.hero .blob.b3 { width: 360px; height: 360px; bottom: -80px; left: 18%; animation-duration: 26s; }
.hero .blob.b4 { width: 280px; height: 280px; bottom: 10%; right: 14%; animation-duration: 20s; }

/* 軽い格子（うっすら） */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(20,20,30,.06) 1.2px, transparent 1.4px);
  background-size: 44px 44px;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 100px;
  color: var(--ink);
  max-width: 960px;
}

.hero-tagline {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--mute);
  letter-spacing: .45em;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.hero-tagline .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin: 0 6px;
  vertical-align: middle;
}
.hero-tagline .dot.c1 { background: var(--c1); }
.hero-tagline .dot.c2 { background: var(--c2); }
.hero-tagline .dot.c3 { background: var(--c3); }
.hero-tagline .dot.c4 { background: var(--c4); }

.hero-catch {
  font-size: clamp(2.2rem, 6.5vw, 4.6rem);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 32px;
  letter-spacing: .06em;
  line-height: 1.3;
}
.hero-catch .grad {
  background: linear-gradient(90deg, var(--c1), var(--c2) 33%, var(--c3) 66%, var(--c4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
/* 手描き風の下線 */
.hero-catch .grad::after {
  content: "";
  position: absolute;
  left: 4%;
  bottom: -8px;
  width: 92%;
  height: 10px;
  background: linear-gradient(90deg, var(--c1), var(--c2) 33%, var(--c3) 66%, var(--c4));
  border-radius: 50% / 30%;
  opacity: .25;
  transform: skewY(-1.5deg);
}

.hero-lead {
  max-width: 640px;
  margin: 0 auto 44px;
  color: #444;
  font-size: 1.04rem;
  line-height: 2;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .12em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 24px rgba(14,14,16,.2);
}
.hero-cta:hover {
  color: #fff;
  background: var(--c1);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(219,49,54,.3);
}
.hero-cta::after { content: "↓"; font-size: 1.1em; }

/* スクロールヒント */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--mute);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: var(--mute);
  margin: 8px auto 0;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   Section 共通
   ======================================== */
.lp-section {
  padding: 140px 24px;
  position: relative;
  scroll-margin-top: 80px;
  overflow: hidden;
}
.lp-section .inner { padding: 0; position: relative; z-index: 2; }

/* 巨大背景番号（装飾） */
.bg-num {
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(10rem, 26vw, 24rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.05);
  text-stroke: 1px rgba(0,0,0,.05);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* 流体シェイプ（blob） */
.blob {
  position: absolute;
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  filter: blur(40px);
  opacity: .45;
  pointer-events: none;
  z-index: 0;
  animation: blobMove 18s ease-in-out infinite alternate;
  will-change: transform, border-radius;
}
.blob.b1 { background: var(--c1); }
.blob.b2 { background: var(--c2); }
.blob.b3 { background: var(--c3); }
.blob.b4 { background: var(--c4); }

@keyframes blobMove {
  0%   { transform: translate(0, 0) scale(1)    rotate(0deg);   border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; }
  50%  { transform: translate(40px, -30px) scale(1.08) rotate(20deg); border-radius: 40% 60% 60% 40% / 40% 60% 50% 60%; }
  100% { transform: translate(-30px, 30px) scale(.96) rotate(-15deg); border-radius: 55% 45% 40% 60% / 60% 50% 50% 40%; }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}
.section-num {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
}
.section-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--mute);
  letter-spacing: .4em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: .04em;
  line-height: 1.2;
}
.section-sub {
  color: var(--mute);
  font-size: 1.02rem;
  max-width: 960px;
  margin-bottom: 56px;
}

/* セクションごとの色アサイン（赤→緑→青→黄 の順） */
.section-c1 .section-num { background: var(--c1); }
.section-c1 .section-title em { color: var(--c1); font-style: normal; }
.section-c1 .accent-bar { background: var(--c1); }

.section-c2 .section-num { background: var(--c2); }
.section-c2 .section-title em { color: var(--c2); font-style: normal; }
.section-c2 .accent-bar { background: var(--c2); }

.section-c3 .section-num { background: var(--c3); }
.section-c3 .section-title em { color: var(--c3); font-style: normal; }
.section-c3 .accent-bar { background: var(--c3); }

.section-c4 .section-num { background: var(--c4); color: #1a1a1a; }
.section-c4 .section-title em { color: var(--c4); font-style: normal; }
.section-c4 .accent-bar { background: var(--c4); }

/* ========================================
   Philosophy (Section 01)
   ======================================== */
#philosophy { background: #fff; }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.philosophy-card {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.philosophy-card .num {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, currentColor 0%, currentColor 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.philosophy-card.c1 .num { color: var(--c1); }
.philosophy-card.c2 .num { color: var(--c2); }
.philosophy-card.c3 .num { color: var(--c3); }
.philosophy-card.c1::before { background: var(--c1); }
.philosophy-card.c2::before { background: var(--c2); }
.philosophy-card.c3::before { background: var(--c3); }
.philosophy-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
}
.philosophy-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.philosophy-card p {
  margin: 0;
  color: #444;
  font-size: .96rem;
}

/* ========================================
   Business (Section 02)
   ======================================== */
#business {
  background: linear-gradient(180deg, #fafafa 0%, #f3f5f8 100%);
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.business-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.business-card .business-head {
  padding: 40px 36px 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.business-card .biz-no {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .25em;
  color: var(--mute);
  margin-bottom: 12px;
  display: block;
}
.business-card.b1 .business-head { border-top: 4px solid var(--c2); }
.business-card.b2 .business-head { border-top: 4px solid var(--c3); }
.business-card.b1 h3 .pill { background: var(--c2); }
.business-card.b2 h3 .pill { background: var(--c3); }

.business-card h3 {
  font-size: 1.7rem;
  letter-spacing: .04em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.business-card h3 .pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.business-card .desc {
  padding: 24px 36px 8px;
  color: #444;
  font-size: 1rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 16px 36px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.steps .step-no {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #f1f3f6;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .05em;
}
.business-card.b1 .steps .step-no { color: var(--c2); }
.business-card.b2 .steps .step-no { color: var(--c3); }

.steps h4 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  letter-spacing: .04em;
}
.steps p {
  margin: 0;
  color: #555;
  font-size: .94rem;
  line-height: 1.85;
}

/* ========================================
   Company (Section 04 / 黄)
   ======================================== */
#company { background: #fff; }

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 0;
  font-size: .98rem;
}
.company-table th,
.company-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
}
.company-table th {
  width: 30%;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .1em;
  font-size: .85rem;
  white-space: nowrap;
  position: relative;
  padding-left: 18px;
}
.company-table th::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c4);
}
.company-table ul {
  margin: 0 0 .4em;
  padding-left: 1.3em;
  color: #444;
}
.company-table ul ul { margin-top: 4px; padding-left: 1.1em; }
.company-table ul ul li { font-size: .92rem; color: #555; }

/* ========================================
   Footer（明るく軽い・上のセクションに調和）
   ======================================== */
.site-footer {
  background:
    radial-gradient(ellipse at top left, #fff5e9 0%, transparent 55%),
    radial-gradient(ellipse at top right, #eaf4ff 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, #eaf9ee 0%, transparent 55%),
    #fafafa;
  color: #555;
  padding: 80px 24px 28px;
  font-size: .9rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
/* 上端の4色ボーダー */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--c1) 0%, var(--c1) 25%,
    var(--c2) 25%, var(--c2) 50%,
    var(--c3) 50%, var(--c3) 75%,
    var(--c4) 75%, var(--c4) 100%);
  z-index: 2;
}
/* 装飾 blob（フッターにもふんわり） */
.site-footer .blob {
  filter: blur(60px);
  opacity: .25;
}
.site-footer .blob.b1 { width: 220px; height: 220px; top: -40px;  left: -60px; }
.site-footer .blob.b3 { width: 240px; height: 240px; bottom: -60px; right: -40px; }

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.footer-brand .brand-logo {
  font-size: 2.4rem;
}
.footer-brand .corp {
  display: block;
  margin: 12px 0 0;
  padding: 0;
  border: none;
  color: var(--mute);
}
.footer-brand .slogan {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .35em;
  color: var(--mute);
  margin-top: 20px;
}

.footer-info dt {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: .78rem;
  letter-spacing: .25em;
}
.footer-info dd {
  margin: 0 0 18px;
  line-height: 1.8;
  color: #555;
}
.footer-info a { color: var(--ink); font-weight: 600; }
.footer-info a:hover { color: var(--c1); }

.footer-bottom {
  max-width: 1120px;
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .74rem;
  color: var(--mute);
  letter-spacing: .12em;
  position: relative;
  z-index: 2;
}
.footer-bottom .dots {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.footer-bottom .dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.footer-bottom .dots span:nth-child(1) { background: var(--c1); }
.footer-bottom .dots span:nth-child(2) { background: var(--c2); }
.footer-bottom .dots span:nth-child(3) { background: var(--c3); }
.footer-bottom .dots span:nth-child(4) { background: var(--c4); }

/* ========================================
   PageTop ボタン
   ======================================== */
.pagetop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
  z-index: 50;
}
.pagetop.is-visible { opacity: 1; pointer-events: auto; }
.pagetop:hover {
  background: var(--c1);
  color: #fff;
  transform: translateY(-3px);
}

/* ========================================
   フェードインアニメーション
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.16,.84,.3,1);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ========================================
   Responsive
   ======================================== */
@media (min-width: 768px) {
  .philosophy-grid { grid-template-columns: repeat(3, 1fr); }
  .business-grid { grid-template-columns: 1fr; max-width: 920px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; gap: 20px 36px; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .business-grid { max-width: none; }
}

@media (max-width: 767px) {
  .lp-section { padding: 80px 20px; }
  .header-inner { padding: 12px 20px; }
  .brand-logo { font-size: 1.5rem; }
  .brand-logo .corp { font-size: .62rem; margin-left: 6px; padding-left: 6px; }

  .nav-toggle { display: block; }
  .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    border-top: 1px solid var(--line);
  }
  .global-nav.is-open { display: block; }
  .global-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  .global-nav li { border-bottom: 1px solid var(--line); }
  .global-nav li:last-child { border-bottom: none; }
  .global-nav a {
    padding: 14px 24px;
    font-size: .92rem;
  }
  .global-nav a::after { display: none; }

  .hero-content { padding: 100px 20px 80px; }

  .business-card .business-head { padding: 32px 24px 20px; }
  .business-card .desc { padding: 20px 24px 4px; }
  .steps { padding: 12px 24px 32px; }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .company-table th {
    border-bottom: none;
    padding-top: 16px;
    padding-left: 16px;
  }
  .company-table tr { display: block; border-bottom: 1px solid var(--line); padding: 8px 0; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
