/* ============================================================
   플로랩 리본 프린터 공식 홈페이지 — 공용 스타일
   화이트 & 블루 (프로그램 UI와 동일 톤)
   ============================================================ */

:root {
  --navy: #16325C;        /* 제목·주요 텍스트 (프로그램 타이틀바 네이비) */
  --navy-deep: #0E1E3C;   /* 푸터 등 가장 짙은 배경 */
  --navy-soft: #2C4F86;   /* 호버 */
  --blue: #2F6BE4;        /* 강조색 (프로그램 버튼 블루) */
  --blue-deep: #1E4FC2;
  --sky: #F6F9FE;         /* 아주 연한 블루 화이트 배경 */
  --ice: #E4EEFB;         /* 연한 블루 보조 배경 */
  --ink: #1C2536;
  --muted: #5C6B82;
  --line: #DEE7F2;
  --white: #FFFFFF;
  --grad-blue: linear-gradient(135deg, #3B82F6 0%, #2456D6 100%);
  --grad-navy: linear-gradient(150deg, #12294F 0%, #1E4FA1 100%);
  --radius: 20px;
  --shadow: 0 10px 40px rgba(21, 52, 105, 0.10);
  --font: "Pretendard Variable", Pretendard, "Noto Sans KR", "Malgun Gothic", "맑은 고딕", sans-serif;
}
/* 기존 변수명 호환 매핑 */
:root {
  --green: var(--navy);
  --green-deep: var(--navy-deep);
  --green-soft: var(--navy-soft);
  --orange: var(--blue);
  --orange-deep: var(--blue-deep);
  --cream: var(--sky);
  --mint: var(--ice);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 14px 22px;
  z-index: 200;
  border-radius: 0 0 12px 0;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ===== 헤더 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-wordmark {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #191919;
}
.brand-wordmark b { font-weight: 800; }
.brand-wordmark .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 4px;
  background: #6E7C5F;
}
.brand > span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.main-nav {
  margin-left: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }

.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  white-space: nowrap;
}
.main-nav a {
  display: inline-block;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover { background: var(--mint); color: var(--green); }
.main-nav a.active { background: var(--ice); color: var(--navy); font-weight: 800; }
.main-nav a.nav-cta {
  background: var(--green);
  color: #fff;
}
.main-nav a.nav-cta:hover { background: var(--green-soft); }
.main-nav a.nav-cta.active { background: var(--blue-deep); }

/* ===== 공통 섹션 ===== */
section { padding: 96px 0; }

.eyebrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--green);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 21px;
  color: var(--muted);
  max-width: 640px;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }

/* ===== 서브페이지 상단 배너 ===== */
.page-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(900px 420px at 85% -20%, #D7E7FB 0%, transparent 62%),
    linear-gradient(180deg, #FFFFFF 0%, var(--sky) 100%);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 21px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== 버튼 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(47, 107, 228, 0.35);
}
.btn-primary:hover { background: linear-gradient(135deg, #2F6BE4 0%, #1E44B8 100%); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--mint); }

.btn-disabled,
.btn[aria-disabled="true"] {
  background: #E2E9F2;
  color: #8794A6;
  cursor: not-allowed;
  box-shadow: none;
}
.btn[aria-disabled="true"]:hover { transform: none; background: #E2E9F2; }

/* ===== 히어로 (홈) ===== */
.hero {
  padding: 88px 0 100px;
  background:
    radial-gradient(1000px 520px at 85% -10%, #D7E7FB 0%, transparent 62%),
    linear-gradient(180deg, #FFFFFF 0%, var(--sky) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--green);
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(92deg, #2F6BE4 10%, #56A0F5 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-actions .btn {
  font-size: 17px;
  padding: 12px 20px;
  white-space: nowrap;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
}
.hero-meta .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-shot {
  position: relative;
}
.hero-shot .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(21, 52, 105, 0.22);
  border: 1px solid rgba(21, 52, 105, 0.10);
  background: #fff;
}
.hero-shot figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 17px;
  color: var(--muted);
}

/* ===== 새 소식 스트립 (홈) ===== */
.news-strip {
  background: var(--ice);
  border-bottom: 1px solid var(--line);
}
.news-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.news-strip .news-badge {
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  padding: 3px 14px;
}
.news-strip a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
}
.news-strip a:hover { text-decoration: underline; }

/* ===== 핵심 장점 ===== */
.strengths {
  background: var(--grad-navy);
  color: #fff;
  padding: 72px 0;
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.strength .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.strength h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.strength p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

/* ===== 주요 기능 ===== */
.features { background: var(--cream); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.feature-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--green);
  margin-bottom: 12px;
}
.feature-card p { font-size: 19px; color: var(--muted); }

.feature-extra {
  margin-top: 40px;
  background: var(--mint);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.feature-extra h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 16px;
}
.feature-extra ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  list-style: none;
}
.feature-extra li {
  background: #fff;
  border: 1px solid rgba(21, 52, 105, 0.12);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--green);
}

/* ===== 사용 방법 ===== */
.howto { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  border: 1px solid var(--line);
}
.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 22px;
}
.step h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p { font-size: 19px; color: var(--muted); }

.notice {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #EDF4FE;
  border: 1px solid #C9DDF8;
  border-left: 6px solid var(--blue);
  border-radius: 16px;
  padding: 24px 28px;
}
.notice .notice-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  margin-top: 2px;
}
.notice p { font-size: 18px; color: #2B4A75; }
.notice strong { color: var(--blue-deep); }

/* ===== 프린터 안내 ===== */
.driver { background: var(--mint); }

.driver-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: start;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  border: 1px solid rgba(21, 52, 105, 0.10);
  font-size: 19px;
}
.check-list .check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.check-list .check svg { width: 16px; height: 16px; }

/* ===== 화면 보기 ===== */
.screens { background: var(--cream); }

.screen-featured {
  margin-bottom: 28px;
}
.screen-featured .frame,
.screen-grid .frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.screen-featured figcaption,
.screen-grid figcaption {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.screen-grid figcaption::before,
.screen-featured figcaption::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 10px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 28px;
}
.screen-grid figure { margin: 0; }

.screens-more {
  margin-top: 48px;
  text-align: center;
}

/* ===== 사용 영상 ===== */
.videos { background: var(--white); }

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.video-card {
  margin: 0;
  width: min(320px, 100%);
}
.video-frame {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-card figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

/* ===== 다운로드 ===== */
.download { background: var(--grad-navy); color: #fff; }
.download .section-title { color: #fff; }
.download .section-lead { color: rgba(255, 255, 255, 0.78); }
.download .eyebrow { color: #9EC6F8; }

.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.dl-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.dl-card .dl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.dl-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.01em;
}
.badge {
  display: inline-block;
  background: #E3EDFC;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 16px;
  white-space: nowrap;
}
.dl-card .dl-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}
.spec {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}
.spec li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.spec .k { color: var(--muted); font-weight: 600; flex-shrink: 0; }
.spec .v { font-weight: 700; text-align: right; }
.spec .v.pending { color: #93A3B8; font-weight: 600; }
.dl-card .btn { margin-top: auto; width: 100%; }

.dl-driver {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 24px;
}
.dl-driver h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.dl-driver p { font-size: 17px; color: var(--muted); max-width: 640px; }
.dl-driver .btn { flex-shrink: 0; }

.dl-security {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 24px 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}
.dl-security .lock {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== 업데이트 내역 ===== */
.updates { background: var(--white); }

.update-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.update-item {
  background: var(--sky);
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  border-radius: 8px 18px 18px 8px;
  padding: 26px 30px;
}
.update-item .update-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 8px;
}
.update-item .uv {
  font-size: 23px;
  font-weight: 800;
  color: var(--navy);
}
.update-item .ud {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
}
.update-item ul {
  list-style: none;
  padding-left: 2px;
}
.update-item li {
  font-size: 18px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.update-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--blue);
}

/* ===== 소모품 ===== */
.supplies { background: var(--sky); }

.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.supply-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
}
.supply-emoji {
  display: block;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
}
.supply-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.supplies-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  font-size: 21px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--mint); }
.faq-item summary .q-mark {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.faq-item summary .q-mark svg { width: 16px; height: 16px; }
.faq-item[open] summary .q-mark { transform: rotate(180deg); background: var(--green); color: #fff; }
.faq-item .answer {
  padding: 4px 30px 26px;
  font-size: 19px;
  color: var(--muted);
}

/* ===== 문의 ===== */
.contact { background: var(--cream); }

.contact-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 56px 48px;
  text-align: center;
}
.contact-card .section-title { margin-bottom: 16px; }
.contact-card .section-lead { margin: 0 auto 36px; }

.contact-tip {
  background: var(--mint);
  border-left: 6px solid var(--green);
  border-radius: 8px 16px 16px 8px;
  padding: 24px 28px;
  font-size: 18px;
  color: var(--green);
  text-align: left;
  margin-bottom: 32px;
}
.contact-tip strong { display: block; margin-bottom: 6px; font-size: 19px; }

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
}
.channel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 12px;
  border: 1px dashed #C4D3E8;
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 18px;
}
.channel .k { font-weight: 700; color: var(--ink); }
.channel .v { word-break: break-all; text-align: right; margin-left: auto; }
.channel .v { color: #93A3B8; font-weight: 600; }

.contact-cta { margin-bottom: 36px; }
.channel-active {
  border-style: solid;
  border-color: var(--blue);
  text-decoration: none;
  transition: background 0.15s;
}
.channel-active:hover { background: var(--ice); }
.channel-active .v { color: var(--blue); font-weight: 700; }
.channel .v.set { color: var(--ink); font-weight: 700; }

/* ===== 푸터 ===== */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 48px;
  font-size: 17px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 28px;
}
.footer-brand strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  font-weight: 600;
}
.footer-links a { color: rgba(255, 255, 255, 0.85); text-decoration: none; padding: 8px 0; display: inline-block; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links .pending { color: rgba(255, 255, 255, 0.45); padding: 8px 0; display: inline-block; }
.footer-note {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* ===== 반응형 ===== */
@media (max-width: 960px) {
  section { padding: 72px 0; }

  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-lead { max-width: none; }

  .strengths-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .driver-grid { grid-template-columns: 1fr; gap: 36px; }
  .screen-grid { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .supply-grid { grid-template-columns: 1fr; }
  .supplies-actions .btn { width: 100%; }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-card { padding: 40px 26px; }
}

@media (max-width: 640px) {
  body { font-size: 18px; }
  .header-inner { min-height: 72px; gap: 16px; }
  .brand > span:last-child { display: none; }
  .main-nav a { padding: 12px 12px; font-size: 17px; }
  .hero h1 { font-size: clamp(38px, 9vw, 48px); }
  .hero-actions .btn {
    flex: 1;
    font-size: 15px;
    padding: 10px 10px;
    min-height: 52px;
  }
  .dl-driver .btn { width: 100%; }
  .section-title { font-size: clamp(30px, 7.5vw, 40px); }
  .faq-item summary { padding: 20px 22px; font-size: 19px; }
  .faq-item .answer { padding: 2px 22px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .faq-item summary .q-mark { transition: none; }
}
