/* =========================================================
 *  운송포탈 데모 — 디자인 시스템
 *  레퍼런스 톤앤매너: 다크 시네마틱 + 블루 그라데이션 (우정항공식)
 *  육상 화물 운송 도메인으로 재구성
 * =======================================================*/

:root {
  /* Brand */
  --cyan: #36c5f0;
  --blue: #1f72e6;
  --blue-2: #1559cf;
  --blue-deep: #0a2a66;
  --navy: #0c1322;
  --navy-2: #111c30;
  --navy-3: #16233c;
  --ink: #16213a;
  --ink-soft: #5a6580;
  --line: #e6eaf2;
  --bg: #ffffff;
  --bg-soft: #f4f7fc;
  --grad: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 55%, var(--blue-2) 100%);
  --grad-soft: linear-gradient(135deg, rgba(54,197,240,.16), rgba(31,114,230,.16));
  --shadow-card: 0 24px 60px -28px rgba(12, 32, 78, .35);
  --shadow-soft: 0 18px 40px -24px rgba(12, 32, 78, .25);

  --maxw: 1200px;
  --header-h: 84px;
  --r: 18px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-ko: "Pretendard", system-ui, -apple-system, "Segoe UI", "Malgun Gothic", sans-serif;
  --font-en: "Montserrat", var(--font-ko);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-ko);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.en { font-family: var(--font-en); font-weight: 800; letter-spacing: -.01em; }

/* ---------- Loader / Intro splash ---------- */
#intro {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity .8s var(--ease), visibility .8s;
}
#intro.hide { opacity: 0; visibility: hidden; }
#intro .intro-logo {
  font-family: var(--font-en); font-weight: 800; font-size: clamp(28px, 6vw, 64px);
  color: #fff; letter-spacing: .02em; opacity: 0; transform: translateY(20px);
  animation: introIn 1s var(--ease) .2s forwards;
}
#intro .intro-logo span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
#intro .intro-sub { color: #8aa0c6; letter-spacing: .35em; font-size: 13px; opacity: 0; animation: introIn 1s var(--ease) .5s forwards; }
#intro .intro-bar { width: 220px; height: 3px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; }
#intro .intro-bar i { display: block; height: 100%; width: 0; background: var(--grad); animation: introBar 2.2s var(--ease) .3s forwards; }
#intro .skip {
  position: absolute; left: 28px; bottom: 28px; color: #6f86ad; font-size: 13px;
  border: 1px solid rgba(255,255,255,.18); padding: 9px 20px; border-radius: 999px;
  letter-spacing: .15em; transition: .25s;
}
#intro .skip:hover { color: #fff; border-color: #fff; }
@keyframes introIn { to { opacity: 1; transform: none; } }
@keyframes introBar { to { width: 100%; } }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header .logo { display: flex; align-items: center; gap: 11px; color: #fff; transition: color .35s; }
.header .logo .mark { width: 40px; height: 40px; }
.header .logo b { font-family: var(--font-en); font-weight: 800; font-size: 21px; letter-spacing: .01em; }
.header .logo small { display: block; font-size: 9px; letter-spacing: .28em; color: #9fb4d6; font-weight: 600; margin-top: 2px; }
.header nav { display: flex; gap: 38px; }
.header nav a { color: rgba(255,255,255,.92); font-weight: 600; font-size: 16px; position: relative; padding: 6px 0; }
.header nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad); transition: width .3s var(--ease); }
.header nav a:hover::after { width: 100%; }
.header .head-cta { display: flex; align-items: center; gap: 10px; }
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px; border: 1.5px solid transparent; transition: .28s var(--ease);
}
.btn-pill.solid { background: var(--grad); color: #fff; box-shadow: 0 12px 26px -12px rgba(31,114,230,.7); }
.btn-pill.solid:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(31,114,230,.8); }
.btn-pill.ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-pill.ghost:hover { background: #fff; color: var(--blue-2); border-color: #fff; }
.btn-pill .arr { transition: transform .28s var(--ease); }
.btn-pill:hover .arr { transform: translateX(4px); }

/* scrolled state */
.header.solid { height: 70px; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: 0 6px 26px -16px rgba(12,32,78,.4); }
.header.solid .logo { color: var(--ink); }
.header.solid .logo small { color: var(--ink-soft); }
.header.solid nav a { color: var(--ink); }
.header.solid .btn-pill.ghost { border-color: var(--line); color: var(--ink); }
.header.solid .btn-pill.ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: var(--navy); }
.hero .media { position: absolute; inset: 0; }
.hero video, .hero .poster { width: 100%; height: 100%; object-fit: cover; }
.hero .poster { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero .scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(8,16,32,.55) 0%, rgba(8,16,32,.25) 35%, rgba(8,16,32,.6) 100%),
  radial-gradient(120% 90% at 20% 30%, rgba(10,42,102,.35), transparent 60%); }
.hero .hero-inner { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero h1 { font-family: var(--font-en); font-weight: 800; color: #fff; font-size: clamp(40px, 7.2vw, 104px); line-height: .98; margin: 0; letter-spacing: -.02em; text-shadow: 0 6px 40px rgba(0,0,0,.35); }
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { color: #fff; font-size: clamp(16px, 2vw, 22px); font-weight: 700; margin-top: 26px; }
.hero .sub small { display: block; color: #c4d3ee; font-weight: 500; font-size: 15px; margin-top: 10px; }
.hero .scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 4; color: #cfe0ff; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .3em; }
.hero .scroll-cue .chev { width: 22px; height: 22px; animation: bounce 1.8s infinite; }
@keyframes bounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(8px);} }

/* hero words reveal */
.hero .line { overflow: hidden; }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section-pad { padding: clamp(80px, 11vh, 150px) 0; }
.eyebrow { font-family: var(--font-en); font-weight: 800; letter-spacing: .25em; font-size: 13px; color: var(--blue); text-transform: uppercase; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; letter-spacing: -.02em; margin: 16px 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin: 0; }
.watermark { position: absolute; font-family: var(--font-en); font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px rgba(31,114,230,.10); font-size: clamp(70px, 16vw, 230px); white-space: nowrap; pointer-events: none; user-select: none; left: 50%; top: 0; transform: translateX(-50%); z-index: 0; }

/* ---------- Brand-reveal (hero -> frame) ---------- */
#brand { background: var(--bg); overflow: hidden; }
#brand .frame-wrap { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; }
#brand .frame { width: min(88vw, 1180px); height: 78vh; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-card); position: relative; will-change: transform; }
#brand .frame img { width: 100%; height: 100%; object-fit: cover; }
#brand .brand-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 2; pointer-events: none; }
#brand .brand-text .big { font-family: var(--font-en); font-weight: 800; font-size: clamp(34px, 7vw, 96px); line-height: 1; color: var(--ink); letter-spacing: -.02em; }
#brand .brand-text .big span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
#brand .brand-text p { color: var(--ink-soft); max-width: 560px; margin: 22px auto 0; font-size: 17px; line-height: 1.7; }

/* ---------- Strength cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 1; }
.s-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 38px 32px; box-shadow: var(--shadow-soft); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.s-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.s-card .ico { width: 64px; height: 64px; border-radius: 18px; background: var(--grad-soft); display: grid; place-items: center; margin-bottom: 22px; }
.s-card .ico svg { width: 32px; height: 32px; stroke: var(--blue); }
.s-card h3 { font-size: 21px; margin: 0 0 10px; font-weight: 800; }
.s-card p { color: var(--ink-soft); line-height: 1.7; margin: 0; font-size: 15px; }
.s-card .num { font-family: var(--font-en); font-weight: 800; font-size: 15px; color: var(--blue); letter-spacing: .1em; }

/* ---------- Pain → Solution ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain { background: var(--bg-soft); border-radius: 16px; padding: 30px 28px; position: relative; }
.pain .q { font-family: var(--font-en); font-size: 40px; color: rgba(31,114,230,.18); font-weight: 800; line-height: .6; }
.pain p { font-size: 16px; font-weight: 600; line-height: 1.6; margin: 14px 0 0; color: var(--ink); }

/* ---------- Service timeline (zigzag) ---------- */
.timeline { position: relative; }
.timeline .spine { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--cyan), var(--blue-2)); transform: translateX(-50%); opacity: .25; }
.t-row { display: grid; grid-template-columns: 1fr 90px 1fr; align-items: center; margin-bottom: 70px; }
.t-row:last-child { margin-bottom: 0; }
.t-media { border-radius: 22px; overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow-card); }
.t-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.t-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 40%, rgba(31,114,230,.55)); }
.t-row:hover .t-media img { transform: scale(1.06); }
.t-body { padding: 0 10px; }
.t-body .tag { font-family: var(--font-en); font-weight: 800; letter-spacing: .15em; color: var(--blue); font-size: 12px; }
.t-body h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin: 10px 0 14px; }
.t-body p { color: var(--ink-soft); line-height: 1.8; margin: 0 0 22px; font-size: 16px; }
.t-dot { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 4px solid var(--blue); margin: 0 auto; box-shadow: 0 0 0 6px rgba(31,114,230,.12); }
.t-row.right .t-media { order: 3; }
.t-row.right .t-body { text-align: right; }
.t-row.left .t-body { order: 3; }

/* MORE pill */
.more { display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px; border-radius: 999px; border: 1.5px solid var(--blue); color: var(--blue); font-weight: 700; font-size: 14px; transition: .28s var(--ease); }
.more:hover { background: var(--blue); color: #fff; }
.more .arr { transition: transform .28s; }
.more:hover .arr { transform: translateX(4px); }

/* ---------- Rate quote widget ---------- */
.rate-sec { background: var(--navy); color: #fff; overflow: hidden; }
.rate-sec .watermark { -webkit-text-stroke-color: rgba(255,255,255,.06); }
.rate-card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 36px; backdrop-filter: blur(8px); }
.rate-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: #9fb4d6; margin-bottom: 8px; font-weight: 600; }
.field select, .field input { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: #fff; font-size: 15px; font-family: inherit; }
.field select option { color: #16213a; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); font-size: 13px; color: #cdd9ef; transition: .2s; user-select: none; }
.chip.active { background: var(--grad); border-color: transparent; color: #fff; font-weight: 700; }
.rate-result { text-align: center; }
.rate-result .label { color: #9fb4d6; font-size: 14px; }
.rate-result .amount { font-family: var(--font-en); font-weight: 800; font-size: clamp(40px, 6vw, 68px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; margin: 6px 0; }
.rate-result .meta { color: #c4d3ee; font-size: 14px; line-height: 1.7; }
.rate-note { color: #6f86ad; font-size: 12px; margin-top: 16px; }

/* ---------- Live dispatch table ---------- */
.live-badge { display: inline-flex; align-items: center; gap: 7px; color: #ff6b6b; font-weight: 700; font-size: 13px; }
.live-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5d5d; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(255,93,93,.6);} 70%{ box-shadow: 0 0 0 8px rgba(255,93,93,0);} 100%{ box-shadow: 0 0 0 0 rgba(255,93,93,0);} }
.dtable { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); }
.dtable th { background: var(--bg-soft); color: var(--ink-soft); font-size: 13px; font-weight: 700; padding: 16px; text-align: left; }
.dtable td { padding: 16px; border-top: 1px solid var(--line); font-size: 14px; }
.state { padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; display: inline-block; }
.state.s접수, .state.s접수 { background: #eef3ff; color: var(--blue-2); }
.state-recv { background: #eef3ff; color: var(--blue-2); }
.state-talk { background: #fff5e6; color: #c47d12; }
.state-move { background: #e9f9ef; color: #1c9b54; }
.state-done { background: #eef0f4; color: #6a7488; }

/* ---------- Stats ---------- */
.stats { background: var(--grad); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .v { font-family: var(--font-en); font-weight: 800; font-size: clamp(38px, 5vw, 58px); line-height: 1; }
.stat .l { margin-top: 10px; font-size: 15px; color: rgba(255,255,255,.85); }

/* ---------- Network / coverage ---------- */
.net-sec { background: var(--navy); color: #fff; overflow: hidden; }
.net-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.net-map { position: relative; }
.net-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.net-tags span { padding: 8px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; font-size: 13px; color: #cdd9ef; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px; transition: .35s var(--ease); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.news-card .cat { font-family: var(--font-en); font-weight: 800; letter-spacing: .12em; font-size: 11px; color: var(--blue); }
.news-card h4 { font-size: 18px; margin: 12px 0; line-height: 1.5; font-weight: 700; }
.news-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin: 0 0 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .date { color: #9aa4ba; font-size: 13px; }

/* ---------- Contact CTA ---------- */
.contact { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 60%, var(--blue-deep) 100%); color: #fff; position: relative; overflow: hidden; }
.contact .iso { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 46px 46px; transform: perspective(600px) rotateX(55deg) scale(1.6); transform-origin: bottom; }
.contact .c-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.contact h2 { font-family: var(--font-en); font-weight: 800; font-size: clamp(36px, 6vw, 76px); margin: 0; }
.contact p { color: rgba(255,255,255,.9); margin: 14px 0 0; font-size: 17px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #aab6cc; padding: 70px 0 40px; }
.footer .f-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer .logo { color: #fff; margin-bottom: 20px; }
.footer .logo b { font-family: var(--font-en); font-weight: 800; font-size: 22px; }
.footer .logo small { display: block; font-size: 9px; letter-spacing: .28em; color: #6f86ad; margin-top: 3px; }
.footer .f-info { font-size: 14px; line-height: 1.9; color: #8395b3; }
.footer h5 { color: #fff; font-size: 15px; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 11px; font-size: 14px; }
.footer ul li a:hover { color: #fff; }
.footer .f-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #6f86ad; flex-wrap: wrap; gap: 12px; }

/* ---------- Floating buttons ---------- */
.floats { position: fixed; right: 22px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-card); border: none; transition: transform .25s var(--ease); position: relative; }
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab.kakao { background: #FEE500; }
.fab.tel { background: var(--grad); }
.fab.top { background: var(--navy-2); opacity: 0; pointer-events: none; transition: opacity .3s, transform .25s; }
.fab.top.show { opacity: 1; pointer-events: auto; }
.fab svg { width: 26px; height: 26px; }
.fab .tip { position: absolute; right: 66px; top: 50%; transform: translateY(-50%); background: var(--navy-2); color: #fff; padding: 7px 13px; border-radius: 8px; font-size: 12px; white-space: nowrap; opacity: 0; pointer-events: none; transition: .2s; }
.fab:hover .tip { opacity: 1; }

/* ---------- Reveal animation base ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ---------- Sub-page generic ---------- */
.page-hero { background: var(--navy); color: #fff; padding: calc(var(--header-h) + 70px) 0 70px; position: relative; overflow: hidden; }
.page-hero .eyebrow { color: var(--cyan); }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin: 14px 0 0; letter-spacing: -.02em; }
.page-hero p { color: #aebfdd; margin: 14px 0 0; font-size: 17px; }
.page-hero .wm { position: absolute; right: -20px; bottom: -40px; font-family: var(--font-en); font-weight: 800; font-size: 180px; color: rgba(255,255,255,.04); }
.crumb { color: #7e93b8; font-size: 13px; margin-bottom: 8px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px; box-shadow: var(--shadow-soft); }
.btn-primary { background: var(--grad); color: #fff; border: none; padding: 15px 30px; border-radius: 12px; font-weight: 700; font-size: 16px; box-shadow: 0 14px 28px -14px rgba(31,114,230,.7); transition: .25s var(--ease); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-line { background: #fff; border: 1.5px solid var(--line); color: var(--ink); padding: 14px 26px; border-radius: 12px; font-weight: 700; transition: .25s; }
.btn-line:hover { border-color: var(--blue); color: var(--blue); }

input.f, select.f, textarea.f { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--ink); background: #fff; transition: .2s; }
input.f:focus, select.f:focus, textarea.f:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,114,230,.12); }
.flabel { font-size: 14px; font-weight: 600; margin-bottom: 7px; display: block; }
.flabel .req { color: #e2483d; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header nav { display: none; }
  .cards-3, .pain-grid, .news-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .rate-grid, .net-grid { grid-template-columns: 1fr; gap: 28px; }
  .t-row { grid-template-columns: 1fr; gap: 18px; }
  .timeline .spine, .t-dot { display: none; }
  .t-row.right .t-media, .t-row.left .t-body, .t-row.right .t-body { order: 0; text-align: left; }
  .footer .f-top { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  #brand .frame { height: 60vh; }
}
@media (max-width: 600px) {
  .cards-3, .pain-grid, .news-grid, .stats-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer .f-top { grid-template-columns: 1fr; }
  .header .head-cta .btn-pill.ghost { display: none; }
}
