/* ================================================================
   HANGYEOL Corporate Website — Styles
   Design reference: Hyundai Mobis (https://www.mobis.com/en/index.do)
   ================================================================ */

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e60012;
  --dark: #111;
  --gray-100: #f0f0f0;
  --gray-200: #ddd;
  --gray-400: #999;
  --gray-600: #666;
  --gray-800: #333;
  --white: #fff;
  --black: #000;
  --header-h: 90px;
  --max-inner: 1340px;
  --max-inner2: 982px;
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: 'Inter', 'proxima-nova', 'Helvetica Neue', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

#skipNav { position: fixed; top: 0; left: 0; z-index: 9999; }
#skipNav a {
  position: absolute; top: -100px; left: 0; padding: 8px 16px;
  background: var(--black); color: var(--white); font-size: 14px;
}
#skipNav a:focus { top: 0; }

.wrap { position: relative; }

/* --- TYPOGRAPHY --- */
.font-en { font-family: 'Inter', 'proxima-nova', sans-serif !important; }
.b { font-weight: 700 !important; }
.bb { font-weight: 800 !important; }
.c-red { color: var(--red) !important; }

.tit01 { font-size: 68px; font-weight: 800; line-height: 1.3; letter-spacing: -0.02em; }
.tit02 { font-size: 52px; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.tit05 { font-size: 28px; font-weight: 800; line-height: 1.35; letter-spacing: -0.02em; }
.tit06 { font-size: 22px; font-weight: 400; line-height: 1.5; }
.tit07 { font-size: 20px; font-weight: 400; line-height: 1.6; }
.txt01 { font-size: 15px; font-weight: 700; color: var(--gray-600); }

.mgt12 { margin-top: 12px; }
.mgt24 { margin-top: 24px; }
.mgt36 { margin-top: 36px; }
.pd0 { padding: 0 !important; }
.pdb0 { padding-bottom: 0 !important; }
.text-c { text-align: center; }

/* ================================================================
   HEADER
   ================================================================ */
.main-header {
  position: fixed; top: 0; left: 0; z-index: 100;
  width: 100%; height: var(--header-h);
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
  color: var(--white);
}
.main-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  color: var(--black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.h-inner {
  max-width: var(--max-inner);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

/* Logo */
.logo { flex-shrink: 0; }
.logo a {
  display: block;
  font-size: 26px; font-weight: 900; letter-spacing: 0.04em;
  color: inherit;
  text-indent: 0;
}

/* GNB */
.gnb-wrap { display: flex; gap: 0; margin-left: 60px; flex: 1; }
.subnav { position: relative; }
.h-depth1 {
  display: flex; align-items: center; height: var(--header-h);
  padding: 0 22px; font-size: 17px; font-weight: 700;
  color: inherit; cursor: pointer;
  transition: color 0.25s;
}
.h-depth1:hover { color: var(--red); }

/* Subnav dropdown */
.subnav-content {
  position: absolute; top: var(--header-h); left: 0;
  min-width: 280px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  padding: 30px 28px;
}
.subnav:hover .subnav-content,
.subnav-content:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.slide-menu { display: flex; flex-direction: column; gap: 24px; }
.sub-menu { }
.h-depth2 {
  display: block; font-size: 15px; font-weight: 800; margin-bottom: 12px;
  color: var(--black); padding-bottom: 8px; border-bottom: 1px solid var(--gray-200);
}
.h-depth2-inner { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.h-depth2-inner a {
  font-size: 14px; color: var(--gray-600);
  transition: color 0.2s;
}
.h-depth2-inner a:hover { color: var(--red); }

/* Header icons */
.h-dropdown { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.h-icons { position: relative; }
.h-icons button {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: none; background: transparent;
  color: inherit; cursor: pointer; font-size: 14px; font-weight: 700;
}
.ico-h { display: block; width: 20px; height: 20px; }

/* Icons (simple CSS shapes) */
.ico-notice { border: 2px solid currentColor; border-radius: 50%; position: relative; }
.ico-notice::after { content: ''; position: absolute; top: 3px; left: 7px; width: 3px; height: 3px; border-radius: 50%; background: currentColor; box-shadow: 0 5px 0 currentColor; }
.dot-new { position: absolute; top: 6px; right: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.ico-lang { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; }
.h-lang button { gap: 4px; width: auto; padding: 0 10px; }
.h-lang .ico-lang::before { content: '🌐'; font-size: 16px; }

.h-ico-search { position: relative; }
.h-ico-search::before { content: '🔍'; font-size: 18px; }

/* Hamburger sitemap button */
.h-sitemap-btn {
  position: fixed; top: 0; right: 0; z-index: 101;
  width: var(--header-h); height: var(--header-h);
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: color 0.35s;
}
.main-header.is-scrolled ~ .h-sitemap-btn { color: var(--black); }
.hamburger-ico { display: flex; flex-direction: column; gap: 6px; width: 28px; }
.hamburger-ico .line { display: block; width: 100%; height: 2px; background: currentColor; }
.line2 { width: 70% !important; }

/* ================================================================
   HERO SECTION (main-sec01)
   ================================================================ */
.main-sec01 {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.visual-slider-wrap {
  position: relative; width: 100%; height: 100%;
}

/* Slides */
.visual-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.visual-slide.is-active { opacity: 1; visibility: visible; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.visual-slide.is-active .slide-bg { transform: scale(1); }

.slide-bg-1 { background-image: url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=2400&q=80'); }
.slide-bg-2 { background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=2400&q=80'); }
.slide-bg-3 { background-image: url('https://images.unsplash.com/photo-1474487548417-781cb71495f3?auto=format&fit=crop&w=2400&q=80'); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.5) 100%);
}

/* Hero text */
.main-sec01-slider-txt {
  position: absolute; z-index: 3;
  bottom: 200px; left: 60px;
  max-width: 860px;
}
.main-sec01-slider-txt .tit01 { color: var(--white); font-size: 68px; line-height: 1.3; }
.main-sec01-slider-txt .tit06 { color: rgba(255,255,255,0.85); }

/* Hero controls */
.main-visual-control {
  position: absolute; bottom: 130px; left: 60px; z-index: 10;
  display: flex; align-items: center; gap: 16px;
}

.main-visual-pagination { display: flex; align-items: center; gap: 14px; }

.visual-dot { cursor: pointer; }
.circle_wrap { position: relative; width: 44px; height: 44px; }
.circle { position: absolute; inset: 0; border-radius: 50%; }
.circle1 { border: 2px solid rgba(255,255,255,0.35); }
.circle2 { border: 2px solid var(--white); clip-path: inset(0 0 0 0); }
.visual-dot.is-active .circle2 { border-color: var(--white); }

.pause-visual, .prev-visual, .next-visual {
  background: none; border: none; color: var(--white); cursor: pointer;
  font-size: 18px; opacity: 0.8;
}
.pause-visual:hover, .prev-visual:hover, .next-visual:hover { opacity: 1; }

.ico-pause-w::before { content: '⏸'; }
.ico-slider-prev::before { content: '◀'; }
.ico-slider-next::before { content: '▶'; }

/* Bottom 3 cards */
.main-sec01-btCon {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  display: grid; grid-template-columns: repeat(3, 1fr);
  min-height: 130px;
}
.main-sec01-btCon a {
  display: flex; align-items: center; justify-content: center;
  padding: 36px 40px;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  transition: background 0.35s ease;
}
.main-sec01-btCon a:first-child { border-left: none; }
.main-sec01-btCon a:hover { background: rgba(0,0,0,0.35); }

.motion {
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.35s ease;
}
.main-sec01-btCon a:hover .motion { transform: translateY(-4px); }

.main-sec01-tit { font-size: 20px; font-weight: 800; }
.main-sec01-txt { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.main-sec01-btn {
  font-size: 14px; font-weight: 800; color: var(--white);
  display: inline-flex; align-items: center; gap: 6px;
}
.main-sec01-btn::after { content: '→'; transition: transform 0.25s; }
.main-sec01-btCon a:hover .main-sec01-btn::after { transform: translateX(4px); }

.main-sec01-invest { display: flex; flex-direction: column; gap: 4px; }
.main-sec01-invest .date { font-size: 12px; color: rgba(255,255,255,0.6); }
.main-sec01-invest .price strong { font-size: 28px; font-weight: 800; margin-right: 6px; }
.main-sec01-invest .price .up { font-size: 14px; color: #4caf50; }

/* ================================================================
   SECTION 02 — RECENT PROJECTS / NEWS
   ================================================================ */
.main-sec02 {
  background: var(--gray-100);
  padding: 120px 0;
}
.main-inner02 {
  max-width: var(--max-inner2);
  margin: 0 auto;
  padding: 0 40px;
}
.main-motion {
  /* animation entry handled by JS */
}

.news-slick-wrap { position: relative; }
.main-news-slider {
  position: relative;
}

.main-news-slide {
  display: none;
}
.main-news-slide.is-active { display: block; }

.main-news-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  min-height: 400px;
}

.img-area {
  width: 100%; aspect-ratio: 4/3;
  background: var(--gray-200);
  background-size: cover; background-position: center;
}
.main-news-slide:nth-child(1) .img-area { background-image: url('https://images.unsplash.com/photo-1535535112387-56ffe8db21ff?auto=format&fit=crop&w=800&q=80'); }
.main-news-slide:nth-child(2) .img-area { background-image: url('https://images.unsplash.com/photo-1564866657317-46e1f5af181c?auto=format&fit=crop&w=800&q=80'); }
.main-news-slide:nth-child(3) .img-area { background-image: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=800&q=80'); }
.main-news-slide:nth-child(4) .img-area { background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=800&q=80'); }
.main-news-slide:nth-child(5) .img-area { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=800&q=80'); }

.txt-area { display: flex; flex-direction: column; justify-content: center; }
.txt-area .txt01 { font-size: 15px; }
.txt-area .tit05 { font-size: 28px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 15px; cursor: pointer; transition: all 0.25s; }

.btn-line-b {
  padding: 12px 28px; border: 2px solid var(--black); color: var(--black);
  background: transparent;
}
.btn-line-b:hover { background: var(--black); color: var(--white); }
.btn-line-b::after { content: '→'; transition: transform 0.25s; }
.btn-line-b:hover::after { transform: translateX(4px); }

.btn-wrap { margin-top: 24px; }

.btn-line-w {
  padding: 12px 28px; border: 2px solid var(--white); color: var(--white);
  background: transparent;
}
.btn-line-w:hover { background: var(--white); color: var(--black); }

/* Slick controls */
.slick-control {
  display: flex; align-items: center; gap: 12px;
  margin-top: 36px;
}
.slick-control button {
  background: none; border: none; font-size: 16px; cursor: pointer;
  color: var(--gray-800); opacity: 0.7;
  transition: opacity 0.2s;
}
.slick-control button:hover { opacity: 1; }
.slick-num { font-size: 14px; font-weight: 800; color: var(--gray-600); }
.slick-num.total { color: var(--gray-400); margin-left: 2px; }
.slick-num.current { color: var(--black); }

.ico-pause::before { content: '⏸'; font-size: 14px; }

/* ================================================================
   SECTION 04 — PRODUCTS CAROUSEL (like Mobis Recruit)
   ================================================================ */
.main-sec04 {
  padding: 120px 0;
  background: var(--white);
}

.title-area { margin-bottom: 60px; }
.title-area .txt01 { margin-bottom: 8px; }

.main-recruit-slider-wrap { position: relative; overflow: hidden; }
.main-recruit-slider {
  display: flex; gap: 0;
  transition: transform 0.5s ease;
}

.recruit-slide {
  min-width: 50%;
  flex-shrink: 0;
  padding: 0 10px;
}

.re-slider-con {
  padding: 60px 50px;
  background: var(--gray-100);
  border-radius: 2px;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: center;
  transition: background 0.35s ease;
}
.recruit-slide.is-active .re-slider-con { background: var(--black); color: var(--white); }
.recruit-slide.is-active .re-slider-con .txt01 { color: var(--red); }
.recruit-slide.is-active .re-slider-con .tit06 { color: var(--white); }

.tit-area .txt01 { margin-bottom: 16px; }
.tit-area .tit06 { color: var(--gray-800); }

.main-recruit-slick-control {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
  padding: 0 10px;
}
.main-recruit-slick-control button {
  background: none; border: none; font-size: 16px; cursor: pointer;
  color: var(--gray-800); opacity: 0.7;
  transition: opacity 0.2s;
}
.main-recruit-slick-control button:hover { opacity: 1; }

/* ================================================================
   SECTION 05 — QUALITY / PARTNERS (like Mobis Sustainability)
   ================================================================ */
.main-sec05 { padding: 120px 0; background: var(--white); }

.main-inner {
  max-width: var(--max-inner2);
  margin: 0 auto; padding: 0 40px;
}

.main-sus-text {
  max-width: var(--max-inner2);
  margin: 0 auto; padding: 0 40px;
}
.main-sus-text .inner { padding: 80px 0 120px; }
.main-sus-text .tit01 { font-size: 68px; line-height: 1.05; }
.main-sus-text .tit01 span { display: block; }
.main-sus-text .tit01 span:first-child { color: var(--gray-200); }
.main-sus-text .tit01 span:last-child { color: var(--black); }
.main-sus-text p:not(.tit01) { font-size: 18px; line-height: 1.8; color: var(--gray-600); max-width: 780px; }
.main-sus-text p span { color: var(--black); font-weight: 700; }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.main-sec-contact {
  padding: 120px 0 0;
  background: var(--black);
  color: var(--white);
}
.contact-info-bar {
  margin-top: 60px;
  padding: 50px 0;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-inner {
  max-width: var(--max-inner2);
  margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.contact-item { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 200px; }
.contact-item strong { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item span { font-size: 16px; color: rgba(255,255,255,0.85); }

/* ================================================================
   QUICK MENU
   ================================================================ */
.quickmenu {
  position: fixed; right: 30px; bottom: 40px; z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.quickmenu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.quickmenu ul a {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 14px; font-weight: 700;
  color: var(--black);
  transition: background 0.25s, border-color 0.25s;
}
.quickmenu ul a:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.quick-ico { display: block; width: 18px; height: 18px; }
.quick-ico::before { font-size: 16px; }
.quick02::before { content: '📦'; }
.quick03::before { content: '✉️'; }

.top-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 50px; height: 50px;
  background: var(--black); color: var(--white);
  border-radius: 50%;
  font-size: 12px; font-weight: 800;
  justify-content: center;
  transition: background 0.25s;
}
.top-btn:hover { background: var(--red); }
.ico-top { display: block; width: 12px; height: 12px; border-top: 2px solid currentColor; border-left: 2px solid currentColor; transform: rotate(45deg); margin-bottom: -4px; }

/* ================================================================
   INNER PAGES — PAGE HERO
   ================================================================ */
.page-hero {
  position: relative; width: 100%; height: 55vh; min-height: 450px;
  background: var(--black); color: var(--white);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero .slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero .slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7) 100%);
}
.page-hero-content {
  position: relative; z-index: 3;
  max-width: var(--max-inner2); margin: 0 auto;
  padding: 0 40px 80px;
}
.page-hero-content h1 { font-size: 52px; font-weight: 800; line-height: 1.2; }
.page-hero-content p { font-size: 20px; margin-top: 16px; opacity: 0.85; }

/* ================================================================
   INNER CONTENT SECTIONS
   ================================================================ */
.content-section { padding: 100px 0; }
.content-section.muted { background: var(--gray-100); }

.content-inner {
  max-width: var(--max-inner2);
  margin: 0 auto; padding: 0 40px;
}

.content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}

.section-label { font-size: 15px; font-weight: 800; color: var(--red); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.section-title { font-size: 48px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 24px; }
.section-desc { font-size: 18px; color: var(--gray-600); line-height: 1.7; }

/* Company info table */
.info-table { border-top: 1px solid var(--gray-200); margin-top: 24px; }
.info-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--gray-200);
  align-items: baseline;
}
.info-row .label { font-size: 14px; font-weight: 800; color: var(--gray-400); }
.info-row .value { font-size: 18px; font-weight: 700; }

/* Value cards */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.value-card {
  padding: 40px 30px; background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 16px;
}
.value-card .num { font-size: 13px; font-weight: 800; color: var(--red); }
.value-card h3 { font-size: 22px; font-weight: 800; }
.value-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }

/* Timeline */
.timeline { position: relative; padding-left: 30px; border-left: 2px solid var(--gray-200); }
.timeline-item { position: relative; padding-bottom: 40px; padding-left: 30px; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.timeline-item strong { font-size: 28px; font-weight: 800; display: block; margin-bottom: 4px; }
.timeline-item p { color: var(--gray-600); line-height: 1.6; }

/* Project cards */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.project-card {
  padding: 40px 30px; background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.35s, border-color 0.35s;
}
.project-card:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.project-card .year { font-size: 14px; font-weight: 800; color: var(--red); }
.project-card h3 { font-size: 24px; font-weight: 800; }
.project-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }
.project-card:hover p { color: rgba(255,255,255,0.7); }
.project-card .card-link { font-size: 14px; font-weight: 800; color: var(--red); margin-top: auto; }
.project-card.is-target { background: var(--black); border-color: var(--black); color: var(--white); }
.project-card.is-target p { color: rgba(255,255,255,0.7); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .gnb-wrap { display: none; }
  .main-sec01-slider-txt { left: 30px; right: 30px; bottom: 180px; max-width: none; }
  .main-sec01-slider-txt .tit01 { font-size: 46px; }
  .main-visual-control { left: 30px; bottom: 110px; }
  .main-sec01-btCon { position: relative; grid-template-columns: 1fr; }
  .main-sec01-btCon a { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .main-news-content { grid-template-columns: 1fr; gap: 30px; }
  .recruit-slide { min-width: 80%; }
  .content-grid, .value-grid, .project-grid { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .h-inner { padding: 0 24px; }
}

@media (max-width: 768px) {
  .tit01, .main-sus-text .tit01 { font-size: 42px; }
  .tit02 { font-size: 32px; }
  .main-sec01-slider-txt .tit01 { font-size: 36px; }
  .main-sec01-slider-txt { bottom: 150px; left: 20px; right: 20px; }
  .main-visual-control { left: 20px; bottom: 90px; }
  .h-inner { padding: 0 16px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
  .quickmenu { right: 10px; bottom: 20px; }
  .h-sitemap-btn { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
  .value-grid, .project-grid { grid-template-columns: 1fr; }
  .recruit-slide { min-width: 100%; }
}
