/*
Theme Name: DAEGER Logistics
Theme URI: https://daegerlogistics.co.kr/
Author: DAEGER Logistics
Description: DAEGER Logistics company homepage theme converted from the static Codex homepage.
Version: 1.0.10
Text Domain: daeger-logistics
*/
:root {
  --ink: #17242b;
  --muted: #5d6b73;
  --line: #d9e1e5;
  --paper: #ffffff;
  --soft: #f3f6f7;
  --navy: #20343f;
  --deep: #0b1820;
  --cyan: #29c6d8;
  --teal: #2f6f83;
  --red: #d94f45;
  --amber: #f0b044;
  --shadow: 0 18px 45px rgba(21, 34, 42, 0.16);
}

* {
  box-sizing: border-box;
}

:root {
  --daeger-cursor-glow: url("assets/daeger-cursor-arrow.png?v=20260705b") 6 4;
  --daeger-cursor-pointer: url("assets/daeger-cursor-arrow.png?v=20260705b") 6 4;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: var(--daeger-cursor-glow), auto;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  letter-spacing: 0;
  cursor: var(--daeger-cursor-glow), auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(23, 36, 43, 0.92);
  color: #fff;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: #fff url("assets/dager-symbol.png") center / 88% auto no-repeat;
  color: transparent;
  font-size: 0;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 22px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.main-nav.has-company-dropdown,
.main-nav.has-dropdowns {
  overflow: visible;
}

.main-nav a {
  padding: 9px 0;
  white-space: nowrap;
}

.main-nav .nav-separated {
  margin-left: 4ch;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.current {
  color: #fff;
}

.main-nav a.current {
  border-bottom: 2px solid var(--cyan);
}

.main-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main-nav-item.has-submenu::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 28px;
}

.company-menu-trigger::after,
.menu-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.82;
}

.nav-submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  z-index: 60;
  width: 210px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(9, 22, 38, 0.98);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 8px, 0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav-item.has-submenu:hover > .nav-submenu,
.main-nav-item.has-submenu:focus-within > .nav-submenu,
.main-nav-item.has-submenu.is-open > .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.nav-submenu a {
  display: block;
  padding: 12px 13px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.current {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-submenu a.current {
  box-shadow: inset 3px 0 0 var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.header-cta {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.header-account-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  gap: 8px;
}

.header-account-link {
  display: grid;
  min-width: 112px;
  min-height: 48px;
  align-content: center;
  gap: 2px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 3px;
  color: #fff;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-account-link span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.header-account-link strong {
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
}

.header-client-account {
  border-color: #b98224;
  background: #b98224;
}

.header-admin-account {
  background: rgba(255, 255, 255, 0.06);
}

.header-account-link:hover,
.header-account-link:focus-visible {
  border-color: #d7a545;
  background: #9e6d1c;
  color: #fff;
  transform: translateY(-1px);
}

.header-account-link.current {
  box-shadow: inset 0 -3px 0 #f4d18d;
}

.page-modern-portal .site-header {
  min-height: 78px;
  padding: 10px clamp(24px, 4vw, 56px);
  border-bottom: 1px solid rgba(13, 27, 51, 0.1);
  background: rgba(255, 255, 255, 0.97);
  color: #0d1b33;
  box-shadow: 0 10px 28px rgba(13, 27, 51, 0.06);
}

.page-modern-portal .brand {
  width: 220px;
  min-width: 220px;
  height: 54px;
}

.page-modern-portal .brand-logo {
  display: block;
  width: 100%;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.page-modern-portal .main-nav {
  color: #263143;
}

.page-modern-portal .main-nav a:hover,
.page-modern-portal .main-nav a:focus-visible,
.page-modern-portal .main-nav a.current {
  color: #0d1b33;
}

.page-modern-portal .main-nav a.current {
  border-bottom-color: #b98224;
}

.page-modern-portal .nav-submenu {
  border-color: #dfe3e8;
  border-top: 2px solid #b98224;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 42px rgba(13, 27, 51, 0.16);
}

.page-modern-portal .nav-submenu a {
  color: #263143;
}

.page-modern-portal .nav-submenu a:hover,
.page-modern-portal .nav-submenu a:focus-visible,
.page-modern-portal .nav-submenu a.current {
  background: #faf8f3;
  color: #0d1b33;
}

.page-modern-portal .nav-submenu a.current {
  box-shadow: inset 3px 0 0 #b98224;
}

.page-modern-portal .header-cta {
  border-color: #b98224;
  border-radius: 3px;
  background: #b98224;
  color: #fff;
  box-shadow: 0 10px 24px rgba(185, 130, 36, 0.2);
}

.page-modern-portal .header-cta:hover,
.page-modern-portal .header-cta:focus-visible {
  border-color: #9e6d1c;
  background: #9e6d1c;
}

.page-modern-portal .header-account-link {
  border-color: #d5dbe2;
  background: #fff;
  color: #0d1b33;
}

.page-modern-portal .header-account-link span {
  color: #7c8795;
}

.page-modern-portal .header-client-account {
  border-color: #b98224;
  background: #b98224;
  color: #fff;
}

.page-modern-portal .header-client-account span {
  color: rgba(255, 255, 255, 0.72);
}

.page-modern-portal .header-account-link:hover,
.page-modern-portal .header-account-link:focus-visible {
  border-color: #b98224;
  background: #faf8f3;
  color: #0d1b33;
}

.page-modern-portal .header-client-account:hover,
.page-modern-portal .header-client-account:focus-visible {
  background: #9e6d1c;
  color: #fff;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 22px rgba(217, 79, 69, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.site-notice-popup {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
}

.site-notice-popup.is-visible {
  display: flex;
}

.site-notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 18, 0.72);
  backdrop-filter: blur(8px);
}

.site-notice-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.site-notice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 24, 33, 0.86);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-weight: 300;
  cursor: var(--daeger-cursor-pointer), pointer;
}

.site-notice-visual {
  min-height: 380px;
  margin: 0;
  background: var(--deep);
}

.site-notice-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.site-notice-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
}

.site-notice-content .eyebrow {
  color: var(--amber);
}

.site-notice-content h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.site-notice-content p {
  margin: 18px 0 0;
  color: #4f6068;
  font-size: 16px;
  line-height: 1.78;
}

.site-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.site-notice-actions .button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.site-notice-content small {
  display: block;
  margin-top: 18px;
  color: #748088;
  font-size: 13px;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 620px;
  padding: 88px clamp(20px, 5vw, 72px) 32px;
  display: grid;
  align-content: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 27, 34, 0.94) 0%, rgba(14, 27, 34, 0.76) 39%, rgba(14, 27, 34, 0.28) 72%, rgba(14, 27, 34, 0.18) 100%),
    url("logistics-hero.svg") center / cover no-repeat;
}

.digital-hero {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(280px, 390px);
  gap: 18px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.98) 0%, rgba(8, 18, 24, 0.86) 44%, rgba(8, 18, 24, 0.32) 100%),
    linear-gradient(0deg, rgba(8, 18, 24, 0.68), rgba(8, 18, 24, 0.04) 48%),
    url("assets/dager-hero-generated.jpg") center / cover no-repeat;
}

.digital-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41, 198, 216, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 198, 216, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 78%, transparent);
  opacity: 0.62;
  pointer-events: none;
}

.digital-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 18%;
  width: 34%;
  height: 42%;
  border: 1px solid rgba(41, 198, 216, 0.34);
  background:
    linear-gradient(90deg, transparent 0 19%, rgba(41, 198, 216, 0.34) 20%, transparent 21% 49%, rgba(41, 198, 216, 0.24) 50%, transparent 51% 79%, rgba(41, 198, 216, 0.28) 80%, transparent 81%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(41, 198, 216, 0.04));
  opacity: 0.8;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 27, 34, 0.8), rgba(14, 27, 34, 0) 48%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(860px, 100%);
  padding-bottom: 28px;
}

.control-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 370px);
  transform: translateX(-56px);
  padding: 16px;
  border: 1px solid rgba(41, 198, 216, 0.3);
  background: rgba(11, 24, 32, 0.72);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.control-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  min-height: 88px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(41, 198, 216, 0.12), transparent),
    rgba(255, 255, 255, 0.05);
}

.control-card.active {
  border-color: rgba(41, 198, 216, 0.52);
}

.control-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.control-card strong {
  color: #fff;
  font-size: 28px;
}

.control-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(36px, 4.15vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.7;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.consent-line input {
  width: auto;
  margin-top: 3px;
}

.prose {
  max-width: 980px;
}

.prose h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 24px;
}

.prose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(840px, 100%);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  min-height: 88px;
  padding: 17px 20px;
  background: rgba(23, 36, 43, 0.76);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.portal-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: start;
  background:
    linear-gradient(180deg, #fff 0%, #f6f8f9 100%);
}

.portal-heading {
  position: sticky;
  top: 96px;
}

.portal-heading h2,
.seo-service-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.16;
  word-break: keep-all;
}

.portal-heading p:not(.eyebrow),
.seo-service-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.portal-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(21, 34, 42, 0.08);
}

.portal-card.admin-card {
  background:
    linear-gradient(135deg, rgba(11, 24, 32, 0.96), rgba(23, 52, 64, 0.94));
  border-color: rgba(41, 198, 216, 0.24);
  color: #fff;
}

.portal-step {
  width: fit-content;
  padding: 5px 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.admin-card .portal-step {
  background: var(--amber);
  color: #09151c;
}

.portal-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.portal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.portal-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.portal-card.admin-card h3,
.portal-card.admin-card p,
.portal-card.admin-card a {
  color: #fff;
}

.section {
  padding: 88px clamp(20px, 5vw, 72px);
}

.page-hero {
  padding: 118px clamp(20px, 5vw, 72px) 72px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(11, 24, 32, 0.98), rgba(22, 47, 58, 0.92)),
    radial-gradient(circle at 80% 22%, rgba(41, 198, 216, 0.32), transparent 30%);
  border-bottom: 1px solid rgba(41, 198, 216, 0.18);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  word-break: keep-all;
  overflow-wrap: normal;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.company-tabs {
  display: none;
  gap: 10px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  overflow-x: auto;
  scrollbar-width: none;
}

.company-tabs::-webkit-scrollbar {
  display: none;
}

.company-tabs a {
  flex: 0 0 auto;
  min-width: 132px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 18px rgba(22, 36, 43, 0.04);
}

.company-tabs a.current {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(13, 27, 51, 0.18);
}

.company-detail-hero {
  background:
    linear-gradient(120deg, rgba(9, 22, 38, 0.98), rgba(13, 27, 51, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(198, 157, 78, 0.26), transparent 31%);
}

.company-overview h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.14;
  word-break: keep-all;
}

.company-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.company-card-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fafb);
  box-shadow: 0 10px 24px rgba(22, 36, 43, 0.06);
}

.company-card-grid strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
}

.company-card-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.company-dark-band {
  background:
    radial-gradient(circle at 85% 18%, rgba(198, 157, 78, 0.18), transparent 30%),
    linear-gradient(135deg, #07172b, #0d1b33);
  color: #fff;
}

.company-dark-band h2 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.14;
  word-break: keep-all;
}

.company-dark-band p:not(.eyebrow) {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.daeger-group {
  position: relative;
  display: grid;
  gap: 28px;
  background:
    radial-gradient(circle at 84% 10%, rgba(198, 157, 78, 0.22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(41, 198, 216, 0.16), transparent 26%),
    linear-gradient(135deg, #07172b, #0d1b33 54%, #111d2a);
  color: #fff;
  overflow: hidden;
}

.daeger-group::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  pointer-events: none;
}

.daeger-group > * {
  position: relative;
  z-index: 1;
}

.daeger-group-heading {
  max-width: 980px;
}

.daeger-group h2 {
  color: #fff;
}

.daeger-group .section-lead {
  max-width: 880px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.group-brand-core {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.28fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.group-brand-core span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.group-brand-core strong {
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.group-brand-core p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
  word-break: keep-all;
}

.group-company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.group-company-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.group-company-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(41, 198, 216, 0.36));
}

.group-company-no {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(198, 157, 78, 0.74);
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.group-company-card small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.group-company-card h3 {
  margin: 8px 0 16px;
  color: #fff;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.2;
}

.group-company-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.76;
  word-break: keep-all;
}

.group-company-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.group-company-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.55;
}

.group-company-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 42px;
  background: var(--paper);
}

.nationwide-showcase {
  position: relative;
  background: #061a31;
  overflow: hidden;
  color: #fff;
}

.nationwide-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
  gap: 30px;
  min-height: 720px;
  padding: 76px clamp(20px, 4vw, 60px) 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 18, 36, 0.96), rgba(3, 18, 36, 0.72) 42%, rgba(3, 18, 36, 0.22)),
    radial-gradient(circle at 72% 42%, rgba(41, 198, 216, 0.2), transparent 36%),
    url("assets/dager-map-warehouse.jpg") left bottom / 48% auto no-repeat,
    #061a31;
}

.nationwide-copy-live {
  min-width: 0;
}

.nationwide-copy-live h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.18;
  word-break: keep-all;
}

.nationwide-copy-live h2 span {
  color: var(--amber);
}

.nationwide-copy-live p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.nationwide-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  max-width: 760px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.nationwide-features article {
  min-height: 138px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.nationwide-features article:last-child {
  border-right: 0;
}

.nationwide-features strong {
  display: block;
  color: #fff;
  font-size: 17px;
}

.nationwide-features span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.nationwide-map-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  grid-template-rows: repeat(3, auto);
  gap: 14px 22px;
  align-content: center;
  min-height: 610px;
}

.network-map-stage {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 4;
  min-height: 580px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(41, 198, 216, 0.2), transparent 42%),
    url("assets/dager-map-visual.jpg") center / 104% auto no-repeat;
  filter: drop-shadow(0 24px 44px rgba(41, 198, 216, 0.2));
}

.network-map-stage::before {
  content: "";
  position: absolute;
  left: 51%;
  top: 32%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 8%, rgba(41, 198, 216, 0.46) 12% 32%, transparent 74%);
  transform: translate(-50%, -50%);
  animation: networkCorePulse 3.4s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.delivery-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.delivery-route {
  --delay: 0s;
  --from: 520;
  --to: -70;
  fill: none;
  stroke: rgba(214, 247, 255, 0.92);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 18 620;
  stroke-dashoffset: var(--from);
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.98))
    drop-shadow(0 0 16px rgba(92, 218, 255, 0.86))
    drop-shadow(0 0 24px rgba(198, 157, 78, 0.36));
  opacity: 0;
  animation: deliveryRouteGlint 4.2s linear infinite;
  animation-delay: var(--delay);
}

.route-seoul { --delay: -0.25s; --from: 360; --to: -80; }
.route-incheon { --delay: -1.75s; --from: 440; --to: -70; }
.route-suwon { --delay: -2.6s; --from: 380; --to: -70; }
.route-gangwon { --delay: -0.95s; --from: 500; --to: -90; }
.route-daejeon { --delay: -3.15s; --from: 340; --to: -70; }
.route-daegu { --delay: -1.25s; --from: 440; --to: -80; }
.route-busan { --delay: -2.05s; --from: 540; --to: -90; }
.route-gwangju { --delay: -3.55s; --from: 500; --to: -90; }
.route-jeju { --delay: -0.55s; --from: 620; --to: -110; }

@keyframes deliveryRouteGlint {
  0% {
    stroke-dashoffset: var(--from);
    opacity: 0;
  }

  10% {
    opacity: 0.22;
  }

  38% {
    opacity: 0.95;
  }

  68% {
    opacity: 0.28;
  }

  100% {
    stroke-dashoffset: var(--to);
    opacity: 0;
  }
}

@keyframes networkCorePulse {
  0%,
  100% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(0.9);
  }

  50% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.network-stat {
  position: static;
  width: auto;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-self: center;
}

.network-stat span,
.network-stat small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.4;
}

.network-stat span {
  color: var(--amber);
  font-weight: 900;
}

.network-stat strong {
  display: block;
  margin-top: 8px;
  color: var(--amber);
  font-size: 48px;
  line-height: 1;
}

.stat-one {
  grid-column: 2;
  grid-row: 1;
}

.stat-two {
  grid-column: 2;
  grid-row: 2;
}

.stat-three {
  grid-column: 2;
  grid-row: 3;
}

.nationwide-process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 60px) 54px;
  background: #061a31;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.process-flow article,
.tracking-system {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.process-flow strong,
.tracking-system strong {
  display: block;
  color: #fff;
  font-size: 17px;
}

.process-flow span,
.tracking-system li {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.process-flow span {
  display: block;
  margin-top: 12px;
}

.tracking-system ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.nationwide-readable {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.seo-service-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 38px;
  align-items: center;
  background: #f6f8f9;
}

.seo-service-copy p {
  max-width: 860px;
}

.seo-keywords {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(21, 34, 42, 0.08);
}

.seo-keywords strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
}

.seo-keywords span {
  padding: 10px 12px;
  border-left: 3px solid var(--amber);
  background: var(--soft);
  color: #243844;
  font-weight: 800;
}

.consult-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(11, 24, 32, 0.98), rgba(22, 47, 58, 0.94));
  color: #fff;
}

.consult-cta strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.consult-cta p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.brand-story-home {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 34px;
  align-items: center;
  background: #101d25;
  color: #fff;
}

.brand-story-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.12;
}

.brand-story-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.brand-image {
  margin: 0;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.brand-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: var(--paper);
}

.brand-values .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.brand-values article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fafb);
  box-shadow: 0 10px 24px rgba(22, 36, 43, 0.05);
}

.brand-values strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.brand-values span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.services-page {
  background: #061a31;
}

.services-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 84px clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 30%, rgba(198, 157, 78, 0.22), transparent 28%),
    linear-gradient(135deg, #061a31 0%, #0d1b2f 48%, #031224 100%);
}

.services-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
  word-break: keep-all;
}

.services-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-value-line {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b2038;
  color: #fff;
}

.service-value-line strong,
.service-value-line span {
  display: block;
}

.service-value-line strong {
  color: var(--amber);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.service-value-line span {
  margin-top: 6px;
  font-size: clamp(22px, 2.7vw, 32px);
  font-weight: 900;
}

.service-value-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.78;
}

.service-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 1px;
  background: #d8e1e8;
}

.solution-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 46%, rgba(255, 255, 255, 0.9) 56%, rgba(255, 255, 255, 0.18) 100%),
    var(--service-bg) right center / 54% 100% no-repeat,
    #fff;
}

.solution-card .icon {
  margin-top: 26px;
}

.solution-no {
  position: absolute;
  left: 30px;
  top: 24px;
  padding: 6px 9px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.solution-card h2 {
  margin: 24px 0 14px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.25;
  word-break: keep-all;
}

.solution-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #243844;
  line-height: 1.65;
}

.service-strength-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px) 42px;
  background: #061a31;
  color: #fff;
}

.service-strength-band div {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.service-strength-band strong {
  color: #fff;
}

.about-brand {
  background: var(--soft);
  color: var(--ink);
}

.about-brand .brand-image {
  border-color: var(--line);
  background: #fff;
}

.about-brand .brand-image img {
  object-fit: contain;
  padding: 34px;
}

.about-brand .brand-story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.slogan-line {
  color: var(--navy) !important;
  font-weight: 900;
}

.vision-band {
  background: #14222a;
  color: #fff;
}

.vision-band h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.12;
}

.vision-band p:not(.eyebrow) {
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.vision-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.vision-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 800;
}

.section-heading h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.14;
}

.section-lead,
.split p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.service-grid .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.service-card {
  min-height: 258px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 36, 43, 0.06);
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 2px solid var(--navy);
  background: #eef4f6;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
}

.truck::before {
  width: 14px;
  height: 15px;
  right: 4px;
  bottom: 8px;
  background: var(--red);
}

.truck::after,
.courier::after {
  left: 8px;
  right: 8px;
  bottom: -8px;
  height: 8px;
  background: radial-gradient(circle at 12px 4px, var(--navy) 0 4px, transparent 5px), radial-gradient(circle at calc(100% - 12px) 4px, var(--navy) 0 4px, transparent 5px);
}

.warehouse::before {
  inset: 13px 9px auto;
  height: 25px;
  border-top: 8px solid var(--red);
  background: repeating-linear-gradient(90deg, var(--navy) 0 8px, transparent 8px 14px);
}

.boxes::before {
  left: 9px;
  top: 11px;
  width: 15px;
  height: 15px;
  background: var(--amber);
  box-shadow: 18px 0 0 var(--teal), 9px 18px 0 var(--red);
}

.globe::before {
  inset: 10px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.globe::after {
  left: 14px;
  top: 25px;
  width: 26px;
  height: 3px;
  background: var(--teal);
}

.package::before {
  left: 11px;
  top: 10px;
  width: 29px;
  height: 29px;
  border: 3px solid var(--red);
  background: linear-gradient(90deg, transparent 45%, var(--red) 45% 55%, transparent 55%);
}

.courier::before {
  left: 9px;
  top: 17px;
  width: 30px;
  height: 17px;
  background: var(--teal);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.operations-panel {
  display: grid;
  gap: 14px;
}

.operations-panel div {
  display: grid;
  grid-template-columns: 58px 110px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.operations-panel span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.operations-panel strong {
  font-size: 22px;
}

.operations-panel p {
  font-size: 16px;
}

.brand-facade-card {
  margin: 0;
  min-height: 330px;
  border: 1px solid var(--line);
  background: #0f1b23;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand-facade-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.process {
  background: var(--navy);
  color: #fff;
}

.process .section-heading {
  margin-bottom: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--amber);
  color: var(--ink);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-top: 28px;
  font-size: 20px;
}

.process-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.cases {
  background: var(--paper);
}

.cases .section-heading,
.faq .section-heading {
  margin-bottom: 28px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fafb);
  box-shadow: 0 10px 28px rgba(22, 36, 43, 0.06);
}

.case-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-grid h3 {
  margin: 20px 0 10px;
  font-size: 23px;
  line-height: 1.35;
}

.case-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 36, 43, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 21px 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 44px;
  padding: 96px clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #f7f9fa, #e7eef1);
}

.page-quote {
  min-height: calc(100vh - 72px);
}

.page-quote .quote-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.12;
}

.quote-copy {
  align-self: start;
  position: sticky;
  top: 100px;
}

.quote-copy p {
  margin-top: 20px;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-strip a {
  display: block;
  padding: 16px 18px;
  border-left: 5px solid var(--teal);
  background: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(22, 36, 43, 0.08);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.portal-forms {
  display: grid;
  gap: 18px;
}

.form-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.admin-form {
  align-self: start;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.login-role-guide {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.login-role-card {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid #dfe3e8;
  border-left: 4px solid #0d1b33;
  background: #fff;
  color: #0d1b33;
  box-shadow: 0 10px 28px rgba(13, 27, 51, 0.06);
}

.login-role-card.is-client {
  border-left-color: #b98224;
  background: #faf8f3;
}

.login-role-card span {
  color: #b98224;
  font-size: 10px;
  font-weight: 900;
}

.login-role-card strong {
  font-size: 17px;
}

.login-role-card p,
.quote-copy .login-role-card p {
  margin: 0;
  color: #687382;
  font-size: 13px;
  line-height: 1.6;
}

a.login-role-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.login-role-card:hover,
a.login-role-card:focus-visible {
  border-color: #b98224;
  box-shadow: 0 14px 34px rgba(13, 27, 51, 0.12);
  transform: translateY(-2px);
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.reply-panel input,
.reply-panel textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd9de;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .file-field small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.quote-form .consent-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quote-form .consent-line input {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  min-height: 14px;
  margin: 0;
  padding: 0;
}

.quote-form .consent-line span {
  line-height: 1.45;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.reply-panel input:focus,
.reply-panel textarea:focus {
  outline: 3px solid rgba(47, 111, 131, 0.18);
  border-color: var(--teal);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.login-required,
.customer-summary {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 36, 43, 0.06);
}

.login-required strong {
  display: block;
  font-size: 20px;
}

.login-required p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.customer-summary {
  display: grid;
  gap: 14px;
}

.customer-summary span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-summary h2 {
  margin: 0;
  font-size: 30px;
}

.customer-summary dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 9px 14px;
  margin: 0;
}

.customer-summary dt {
  color: var(--muted);
  font-weight: 900;
}

.customer-summary dd {
  margin: 0;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
  background: var(--soft);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-toolbar h2,
.reply-panel h2 {
  margin: 0;
  font-size: 24px;
}

.cs-list {
  display: grid;
  gap: 14px;
}

.cs-item,
.reply-panel,
.empty-state {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 36, 43, 0.06);
}

.cs-item {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.cs-item > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cs-item span {
  padding: 5px 9px;
  background: rgba(41, 198, 216, 0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.cs-item strong {
  font-size: 18px;
}

.cs-item small {
  color: var(--muted);
}

.cs-item h3 {
  margin: 0;
  font-size: 22px;
}

.cs-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.compact-list .cs-item {
  padding: 18px;
}

.compact-list .cs-item h3 {
  font-size: 18px;
}

.cs-item dl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px 14px;
  margin: 0;
  padding: 16px;
  background: var(--soft);
}

.cs-item dt {
  color: var(--muted);
  font-weight: 800;
}

.cs-item dd {
  margin: 0;
}

.reply-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.reply-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reply-panel label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.empty-state {
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #14222a;
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

.floating-kakao-channel {
  position: fixed;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2147482200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 158px;
  min-height: 62px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(54, 29, 29, 0.12);
  border-radius: 999px;
  background: #fee500;
  color: #261c00;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(5, 12, 18, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: var(--daeger-cursor-pointer), pointer;
}

.floating-kakao-channel:hover,
.floating-kakao-channel:focus-visible {
  background: #ffe94a;
  color: #181200;
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(5, 12, 18, 0.28);
}

.floating-kakao-channel:focus-visible {
  outline: 3px solid rgba(254, 229, 0, 0.34);
  outline-offset: 4px;
}

.kakao-channel-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #371d1e;
  color: #fee500;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.kakao-channel-icon::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  background: #371d1e;
  transform: rotate(38deg);
}

.kakao-channel-text {
  display: grid;
  gap: 2px;
  line-height: 1.15;
  white-space: nowrap;
}

.kakao-channel-text strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.kakao-channel-text small {
  color: rgba(38, 28, 0, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.floating-kakao-channel.is-fallback .kakao-channel-text small {
  color: rgba(38, 28, 0, 0.66);
}

@media (max-width: 1000px) {
  .site-header {
    flex-wrap: wrap;
  }

  .header-account-actions {
    margin-left: auto;
  }

  .site-notice-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 36px);
    overflow-y: auto;
  }

  .site-notice-visual {
    min-height: 240px;
  }

  .main-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .main-nav.has-company-dropdown,
  .main-nav.has-dropdowns {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .main-nav-item.has-submenu::after {
    display: none;
  }

  .nav-submenu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 112px;
    width: auto;
    max-width: calc(100vw - 32px);
    transform: translate3d(0, 8px, 0);
  }

  .main-nav-item.has-submenu:hover > .nav-submenu,
  .main-nav-item.has-submenu:focus-within > .nav-submenu,
  .main-nav-item.has-submenu.is-open > .nav-submenu {
    transform: translate3d(0, 0, 0);
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .digital-hero {
    grid-template-columns: 1fr;
  }

  .control-board {
    width: min(100%, 720px);
    transform: none;
  }

  .intro,
  .split,
  .quote-section,
  .brand-story-home,
  .portal-overview,
  .seo-service-copy,
  .service-value-line,
  .nationwide-hero-panel,
  .nationwide-process,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .group-brand-core {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portal-heading {
    position: static;
  }

  .nationwide-hero-panel {
    min-height: auto;
  }

  .nationwide-map-visual {
    grid-template-columns: minmax(0, 1fr) 160px;
    min-height: 570px;
  }

  .network-map-stage {
    min-height: 540px;
  }

  .process-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-copy,
  .reply-panel {
    position: static;
  }

  .service-grid,
  .group-company-grid,
  .company-card-grid,
  .service-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 98px;
    gap: 10px;
    padding: 10px 16px;
  }

  .site-notice-popup {
    align-items: flex-start;
    justify-content: center;
    padding: 48px 12px 12px;
  }

  .site-notice-backdrop {
    background: rgba(5, 12, 18, 0.46);
    backdrop-filter: blur(3px);
  }

  .site-notice-panel {
    width: min(100%, 390px);
    max-height: calc(100vh - 78px);
    border-radius: 8px;
  }

  .site-notice-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 21px;
  }

  .site-notice-visual {
    min-height: 82px;
    max-height: 96px;
  }

  .site-notice-content {
    padding: 15px 16px 16px;
  }

  .site-notice-content .eyebrow {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .site-notice-content h2 {
    font-size: 20px;
    line-height: 1.24;
  }

  .site-notice-content p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.55;
  }

  .site-notice-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .site-notice-actions .button {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .site-notice-content small {
    display: none;
  }

  .brand {
    min-width: 100%;
  }

  .page-modern-portal .brand {
    width: min(210px, 72vw);
    min-width: 0;
    height: 48px;
  }

  .header-account-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 2;
    width: 100%;
    margin-left: 0;
  }

  .header-account-link {
    min-width: 0;
    min-height: 44px;
    padding: 6px 10px;
  }

  .header-account-link strong {
    font-size: 11px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  .nav-submenu {
    top: 104px;
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
  }

  .main-nav .nav-separated {
    margin-left: 3ch;
  }

  .hero {
    min-height: 760px;
    padding: 92px 18px 26px;
    background-position: 58% center;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .control-board {
    padding: 10px;
  }

  .control-card {
    min-height: 74px;
    padding: 13px;
  }

  .control-card strong {
    font-size: 22px;
  }

  .hero-stats div {
    min-height: 78px;
    padding: 12px 10px;
  }

  .hero-stats strong {
    font-size: 23px;
  }

  .hero-stats span {
    font-size: 12px;
    line-height: 1.35;
  }

  .section,
  .quote-section {
    padding: 64px 18px;
  }

  .page-hero {
    padding: 82px 18px 56px;
  }

  .company-tabs {
    padding: 14px 18px;
  }

  .company-tabs a {
    min-width: 124px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .service-grid,
  .brand-values,
  .group-company-grid,
  .company-card-grid,
  .portal-grid,
  .service-solution-grid,
  .service-strength-band,
  .process-list,
  .case-grid,
  .quote-form,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    display: grid;
  }

  .services-hero {
    min-height: 520px;
    padding: 72px 18px;
    background-position: 58% top;
  }

  .portal-card {
    min-height: auto;
    padding: 22px;
  }

  .daeger-group {
    gap: 22px;
  }

  .group-brand-core {
    padding: 22px;
  }

  .group-company-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .seo-keywords {
    padding: 22px;
  }

  .service-value-line {
    padding: 30px 18px;
  }

  .nationwide-hero-panel {
    padding: 64px 18px 28px;
    background:
      linear-gradient(180deg, rgba(3, 18, 36, 0.96), rgba(3, 18, 36, 0.7)),
      url("assets/dager-map-warehouse.jpg") left bottom / 100% auto no-repeat,
      #061a31;
  }

  .nationwide-copy-live h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .nationwide-features {
    grid-template-columns: 1fr;
  }

  .nationwide-features article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nationwide-map-visual {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
  }

  .network-map-stage {
    grid-column: 1;
    grid-row: auto;
    min-height: 400px;
    background-size: 106% auto;
  }

  .network-map-stage::before,
  .delivery-route {
    animation-duration: 2.8s;
  }

  .network-stat {
    display: block;
    min-width: 0;
    margin: 4px;
    padding: 12px;
    background: rgba(3, 18, 36, 0.74);
  }

  .stat-one,
  .stat-two,
  .stat-three {
    grid-column: 1;
    grid-row: auto;
  }

  .network-stat strong {
    font-size: 34px;
  }

  .nationwide-process {
    padding: 0 18px 42px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
    padding: 26px 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 64%, rgba(255, 255, 255, 0.72) 100%),
      var(--service-bg) center bottom / 100% auto no-repeat,
      #fff;
  }

  .service-strength-band {
    padding: 0 18px 34px;
  }

  .cs-item dl {
    grid-template-columns: 1fr;
  }

  .customer-summary dl {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    padding: 18px;
    font-size: 16px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .operations-panel div {
    grid-template-columns: 48px 1fr;
  }

  .operations-panel p {
    grid-column: 2;
  }

  .brand-facade-card,
  .brand-facade-card img {
    min-height: 240px;
  }

  .site-footer {
    display: grid;
  }

  .floating-kakao-channel {
    right: 14px;
    bottom: 14px;
    min-width: 58px;
    min-height: 58px;
    padding: 8px;
    justify-content: center;
  }

  .floating-kakao-channel .kakao-channel-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

a,
button,
summary,
label,
select,
input[type="button"],
input[type="submit"],
input[type="reset"],
[role="button"],
.faq-list summary {
  cursor: var(--daeger-cursor-pointer), pointer;
}

input,
textarea,
[contenteditable="true"] {
  cursor: text;
}

.daeger-cursor-halo {
  position: fixed;
  top: -40px;
  left: -40px;
  z-index: 2147483647;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, #ff2d24 0 34%, rgba(255, 45, 36, 0.72) 35% 54%, rgba(255, 45, 36, 0) 72%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.86),
    0 0 10px rgba(255, 45, 36, 0.78),
    0 0 24px rgba(255, 45, 36, 0.34);
  filter: blur(0.08px);
  mix-blend-mode: normal;
  transition: opacity 120ms ease, width 160ms ease, height 160ms ease, box-shadow 160ms ease;
}

.daeger-cursor-halo::before,
.daeger-cursor-halo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.daeger-cursor-halo::before {
  inset: -12px;
  background: radial-gradient(circle, rgba(255, 45, 36, 0.22), rgba(255, 45, 36, 0) 68%);
}

.daeger-cursor-halo::after {
  left: 50%;
  top: 50%;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 45, 36, 0), rgba(255, 45, 36, 0.5));
  transform: translate(-100%, -50%) rotate(var(--daeger-cursor-angle, 0deg));
  transform-origin: right center;
  opacity: 0.72;
}

.daeger-cursor-halo.is-active {
  opacity: 0.94;
}

.daeger-cursor-halo.is-pressing {
  width: 16px;
  height: 16px;
  opacity: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 14px rgba(255, 45, 36, 0.86),
    0 0 34px rgba(255, 45, 36, 0.48);
}

.daeger-cursor-trail-svg {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 1;
  overflow: visible;
}

.daeger-cursor-trail-svg line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.daeger-cursor-trail-segment-glow {
  stroke: rgb(255, 68, 56);
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(255, 45, 36, 0.34));
}

.daeger-cursor-trail-segment-line {
  stroke: rgb(255, 158, 132);
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(255, 45, 36, 0.22));
}

@media (pointer: coarse) {
  html,
  body,
  a,
  button,
  summary,
  label,
  select,
  input,
  textarea,
  [role="button"],
  [contenteditable="true"],
  .faq-list summary {
    cursor: auto;
  }

  .daeger-cursor-halo,
  .daeger-cursor-trail-svg {
    display: none;
  }
}

/* Customer CS history */
.cs-history {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 96px;
}

.cs-history > header {
  margin-bottom: 26px;
}

.cs-history > header h2 {
  margin: 5px 0 8px;
  color: #0d1b33;
  font-size: 32px;
}

.cs-history > header > span {
  color: #687385;
  font-size: 14px;
}

.cs-history-list {
  display: grid;
  gap: 16px;
}

.cs-history-item {
  border: 1px solid #dce2e8;
  border-top: 3px solid #172b4d;
  padding: 24px;
  background: #fff;
}

.cs-history-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cs-history-heading small {
  color: #b98224;
  font-size: 11px;
  font-weight: 800;
}

.cs-history-heading h3 {
  margin: 4px 0 0;
  color: #0d1b33;
  font-size: 21px;
}

.cs-history-heading > strong {
  border: 1px solid #c9d1da;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f4f6f8;
  color: #59677a;
  font-size: 11px;
}

.cs-history-heading > strong.is-progress {
  border-color: #e3ca95;
  background: #fff8e9;
  color: #8a6117;
}

.cs-history-heading > strong.is-complete {
  border-color: #a9d2c0;
  background: #eff9f5;
  color: #1f6f50;
}

.cs-history-item dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 20px 0 0;
  background: #dce2e8;
}

.cs-history-item dl > div {
  padding: 12px 14px;
  background: #f8f9fa;
}

.cs-history-item dt {
  color: #8993a1;
  font-size: 10px;
}

.cs-history-item dd {
  margin: 4px 0 0;
  color: #364256;
  font-size: 12px;
  font-weight: 700;
}

.cs-history-message {
  margin: 16px 0 0;
  color: #526074;
  font-size: 13px;
  line-height: 1.75;
}

.cs-history-reply {
  border-left: 3px solid #c99a3d;
  margin-top: 18px;
  padding: 14px 16px;
  background: #faf8f3;
}

.cs-history-reply strong {
  color: #8a6117;
  font-size: 12px;
}

.cs-history-reply p {
  margin: 6px 0 0;
  color: #3f4b5e;
  font-size: 13px;
  line-height: 1.75;
}

.cs-history-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cs-history-files a {
  border: 1px solid #c9d1da;
  border-radius: 4px;
  padding: 8px 11px;
  color: #172b4d;
  font-size: 11px;
  font-weight: 700;
}

.cs-history-empty {
  border: 1px dashed #c9d1da;
  padding: 60px 24px;
  background: #fff;
  color: #687385;
  text-align: center;
}

@media (max-width: 720px) {
  .cs-history {
    width: min(100% - 28px, 1180px);
    padding-bottom: 64px;
  }

  .cs-history > header h2 {
    font-size: 27px;
  }

  .cs-history-item {
    padding: 20px 16px;
  }

  .cs-history-heading {
    flex-direction: column;
  }

  .cs-history-item dl {
    grid-template-columns: 1fr;
  }
}

