/* ============================================================
   울산 에피트 스타시티 - 랜딩페이지 메인 스타일시트
   ============================================================ */

/* ── CSS 변수 ── */
:root {
  --primary: #1a3a5c;
  --primary-light: #2a5080;
  --accent: #c8a96a;
  --accent-light: #e0c98a;
  --bg-dark: #0d1f33;
  --bg-light: #f8f6f2;
  --bg-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #f5f5f5;
  --text-muted: #888;
  --border: #e0ddd5;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.14);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.22);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: .3s ease;
}

/* ── 리셋 & 기본 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 공통 레이아웃 ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); }

/* ── 섹션 헤더 ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: .75rem;
  letter-spacing: .25em;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
.section-header-white .section-title { color: #fff; }
.section-header-white .section-desc { color: rgba(255,255,255,.7); }

/* ── 버튼 ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,169,106,.4);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,106,.5);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  padding: 18px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(26,58,92,.3);
}
.btn-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8c97a, #c8a030, #f0d890, #b8901e);
  background-size: 200% 200%;
  color: #5a3a00;
  box-shadow:
    0 4px 16px rgba(180,140,20,.55),
    0 0 0 0 rgba(200,160,48,.6),
    inset 0 1px 1px rgba(255,255,220,.5);
  animation: floatRing 2s ease-in-out infinite, goldShimmer 4s linear infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-cta:hover {
  transform: scale(1.12);
  color: #3a2200;
  box-shadow:
    0 8px 28px rgba(180,140,20,.7),
    inset 0 1px 2px rgba(255,255,220,.6);
}
.float-cta i {
  font-size: 1.5rem;
  filter: drop-shadow(0 1px 2px rgba(90,50,0,.3));
  animation: phoneRing 1.8s ease-in-out infinite;
  transform-origin: top left;
  display: inline-block;
}
@keyframes floatRing {
  0%   { box-shadow: 0 4px 16px rgba(180,140,20,.55), 0 0 0 0 rgba(200,160,48,.55), inset 0 1px 1px rgba(255,255,220,.5); }
  60%  { box-shadow: 0 4px 16px rgba(180,140,20,.55), 0 0 0 16px rgba(200,160,48,.0), inset 0 1px 1px rgba(255,255,220,.5); }
  100% { box-shadow: 0 4px 16px rgba(180,140,20,.55), 0 0 0 0 rgba(200,160,48,.0), inset 0 1px 1px rgba(255,255,220,.5); }
}
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes phoneRing {
  0%       { transform: rotate(0deg); }
  5%       { transform: rotate(15deg); }
  10%      { transform: rotate(-15deg); }
  15%      { transform: rotate(15deg); }
  20%      { transform: rotate(-10deg); }
  25%      { transform: rotate(8deg); }
  30%      { transform: rotate(0deg); }
  100%     { transform: rotate(0deg); }
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#header.scrolled {
  background: rgba(13,31,51,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.logo-prefix,
.logo-suffix {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
}
.logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
}
.gnb ul {
  display: flex;
  gap: 36px;
}
.gnb a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.gnb a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.gnb a:hover, .gnb a.active { color: var(--accent); }
.gnb a:hover::after, .gnb a.active::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.05);
  animation: heroPanIn 1.4s ease forwards;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@keyframes heroPanIn {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,51,.88) 0%,
    rgba(13,31,51,.7) 50%,
    rgba(13,31,51,.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 0 0;
  animation: fadeInUp .9s ease .2s both;
}
.hero-content > *:not(.hero-notice) {
  padding-left: 24px;
  padding-right: 24px;
}
.hero-content > .hero-actions {
  padding-bottom: 36px;
}
/* 타이틀 블록 — 중앙 정렬 */
.hero-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 1.6rem;
  letter-spacing: .12em;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  align-self: center;
  text-align: center;
  animation: eyebrowDrop .9s cubic-bezier(.22,.61,.36,1) .2s both;
}
@keyframes eyebrowDrop {
  from { opacity: 0; transform: translateY(-28px); letter-spacing: .04em; }
  to   { opacity: 1; transform: translateY(0);     letter-spacing: .12em; }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
    letter-spacing: .04em;
  }
  to {
    opacity: 1;
    transform: translateX(0);
    letter-spacing: .12em;
  }
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background: linear-gradient(
    90deg,
    #c8a030 0%,
    #f0d890 20%,
    #fff8e7 40%,
    #f0d890 60%,
    #c8a030 80%,
    #f0d890 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(200,160,48,.55)) drop-shadow(0 2px 8px rgba(180,130,0,.4));
  white-space: nowrap;
  animation: goldShimmer 4s linear infinite, goldGlow 3s ease-in-out infinite;
}
.hero-title em {
  font-style: normal;
  font-family: 'Noto Sans KR', sans-serif;
}
@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes goldGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(200,160,48,.4)) drop-shadow(0 2px 8px rgba(180,130,0,.35)); }
  50%       { filter: drop-shadow(0 0 28px rgba(240,216,144,.8)) drop-shadow(0 2px 12px rgba(200,160,48,.6)); }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-top: 16px;
  margin-bottom: 0;
  font-weight: 300;
  letter-spacing: .05em;
  align-self: center;
  text-align: center;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,169,106,.4);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
}
.badge i { color: var(--accent); }

.badge-hot {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(200,160,48,.9);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 12px 26px;
  letter-spacing: .03em;
  animation: badgeFloat 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(200,160,48,.6), 0 4px 20px rgba(200,160,48,.3);
}
.badge-hot i { font-size: 1rem; }
.badge-hot em {
  font-style: normal;
  font-size: .82rem;
  font-weight: 700;
  background: linear-gradient(90deg, #f0d070, #c8a030);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-left: 1.5px solid rgba(200,160,48,.6);
  padding-left: 10px;
  margin-left: 4px;
}
@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(200,160,48,.6), 0 4px 20px rgba(200,160,48,.3);
  }
  40% {
    box-shadow: 0 0 0 10px rgba(200,160,48,.0), 0 4px 20px rgba(200,160,48,.3);
  }
  50% {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 0 0 rgba(200,160,48,.0), 0 10px 28px rgba(200,160,48,.45);
  }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* HOT 배너 - 히어로 내부 하단 */
.hero-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
  background: rgba(13, 31, 51, 0.72);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(200,160,48,.35);
  border-bottom: 1px solid rgba(200,160,48,.35);
  padding: 14px 32px;
  width: 100%;
  box-sizing: border-box;
}
.hero-notice .notice-tag {
  background: #e74c3c;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.hero-notice .notice-text {
  color: rgba(255,255,255,.92);
  font-size: .92rem;
  flex: 1;
  line-height: 1.5;
}
.hero-notice .notice-text strong {
  color: var(--accent-light);
}
.hero-notice .notice-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 7px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
  transition: background var(--transition);
  white-space: nowrap;
}
.hero-notice .notice-tel:hover {
  background: var(--accent-light);
  color: var(--primary);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .2em;
  animation: scrollBounce 2s ease infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BRAND BANNER
   ============================================================ */
.brand-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.brand-banner-img {
  position: relative;
  width: 100%;
}
.brand-banner-img > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(1);
}
.brand-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,15,30,.2) 0%,
    rgba(5,15,30,.05) 40%,
    rgba(5,15,30,.05) 60%,
    rgba(5,15,30,.2) 100%
  );
}
/* 상단 */
.brand-banner-top {
  position: absolute;
  top: 44px;
  left: 48px;
}
.brand-banner-eyebrow {
  font-size: .78rem;
  letter-spacing: .3em;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brand-banner-title {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 30%, #f0d890 60%, #c8a030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(180,130,0,.35));
}
/* 중앙 */
.brand-center-logo {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  pointer-events: none;
}
.brand-hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand-hero-eyebrow {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.brand-hero-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0;
  background: linear-gradient(
    90deg,
    #c8a030 0%,
    #f0d890 20%,
    #fff8e7 40%,
    #f0d890 60%,
    #c8a030 80%,
    #f0d890 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(200,160,48,.55)) drop-shadow(0 2px 8px rgba(180,130,0,.4));
  white-space: nowrap;
  animation: goldShimmer 4s linear infinite, goldGlow 3s ease-in-out infinite;
}
.brand-hero-title em {
  font-style: normal;
  font-family: 'Noto Sans KR', sans-serif;
}
.brand-hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.85);
  font-weight: 300;
  letter-spacing: .05em;
}
/* 하단 */
.brand-banner-bottom {
  position: absolute;
  bottom: 44px;
  left: 48px;
}
.brand-banner-cta {
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 4px;
  letter-spacing: .03em;
  box-shadow: 0 4px 20px rgba(200,160,48,.45);
}
.brand-banner-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200,160,48,.6);
}
.mo-br { display: none; }

@media (max-width: 768px) {
  .brand-banner-img > img { height: 460px; object-position: center center; filter: brightness(1); }
  .mo-br { display: block; }
  .brand-banner-top { top: 28px; left: 24px; }
  .brand-banner-bottom { bottom: 28px; left: 24px; }
  .brand-banner-cta { font-size: .88rem; padding: 13px 24px; }
  .brand-hero-title { font-size: clamp(2rem, 8vw, 3.2rem); white-space: normal; }
}
@media (max-width: 480px) {
  .brand-banner-img > img { height: 380px; filter: brightness(1); }
  .brand-hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ============================================================
   NOTICE BANNER
   ============================================================ */
.notice-banner {
  background: var(--primary);
  padding: 16px 24px;
  overflow: hidden;
}
.notice-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.notice-tag {
  background: #e74c3c;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.notice-text {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  flex: 1;
}
.notice-text strong { color: var(--accent-light); }
.notice-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.notice-tel:hover { background: var(--accent-light); color: var(--primary); }

/* ============================================================
   OVERVIEW
   ============================================================ */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.overview-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.ov-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: 1.4rem;
}
.ov-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ov-value {
  font-size: .95rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.6;
}

/* ============================================================
   KEY NUMBERS
   ============================================================ */
.key-numbers {
  background: linear-gradient(135deg, var(--primary) 0%, #1e4976 100%);
  padding: 72px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.num-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.num-item:last-child { border-right: none; }
.num-value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.num-unit {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-left: 2px;
}
.num-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  letter-spacing: .03em;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.map-placeholder {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 48px 32px;
  min-height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.map-pin {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(200,169,106,.4);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.map-pin i { font-size: 1.3rem; }
.map-distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}
.dist-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  text-align: center;
}
.dist-item strong { display: block; color: var(--accent); font-size: 1rem; margin-top: 4px; }

.location-features { display: flex; flex-direction: column; gap: 20px; }
.loc-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: background var(--transition);
}
.loc-feature:hover { background: rgba(255,255,255,.09); }
.loc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #fff;
}
.loc-icon-blue  { background: #2471a3; }
.loc-icon-green { background: #1e8449; }
.loc-icon-teal  { background: #1a6b7a; }
.loc-icon-orange{ background: #c0392b; }
.loc-icon-purple{ background: #7d3c98; }
.loc-icon-red   { background: #cb4335; }
.loc-text strong { display: block; color: #fff; font-size: .95rem; margin-bottom: 4px; }
.loc-text p { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.6; }

/* ============================================================
   PREMIUM
   ============================================================ */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prem-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 30px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.prem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.prem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.prem-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(26,58,92,.07);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 8px;
}
.prem-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.prem-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.prem-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.prem-tag {
  display: inline-block;
  background: rgba(200,169,106,.15);
  color: #996633;
  border: 1px solid rgba(200,169,106,.3);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}

/* ============================================================
   SMART LIVING
   ============================================================ */
.section-smart {
  background: var(--primary);
  padding: 100px 0;
}
.smart-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.smart-text .section-title { color: #fff; }
.smart-desc { color: rgba(255,255,255,.7); margin: 20px 0 32px; font-size: .95rem; }
.smart-list { display: flex; flex-direction: column; gap: 14px; }
.smart-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.smart-list li i { color: var(--accent); font-size: 1rem; }

.smart-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.smart-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: background var(--transition), transform var(--transition);
}
.smart-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.smart-card i { font-size: 2rem; color: var(--accent); }
.smart-card span { font-size: .85rem; line-height: 1.5; color: rgba(255,255,255,.8); }
.sc-1 { grid-row: 1; grid-column: 1; }
.sc-2 { grid-row: 1; grid-column: 2; }
.sc-3 { grid-row: 2; grid-column: 1; }
.sc-4 { grid-row: 2; grid-column: 2; }

/* ============================================================
   FLOOR PLAN
   ============================================================ */
.type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.type-tab {
  padding: 10px 28px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: #fff;
  transition: all var(--transition);
}
.type-tab:hover { border-color: var(--primary); color: var(--primary); }
.type-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.type-panel { display: none; }
.type-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.type-spec {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.type-name { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.type-units {
  background: rgba(26,58,92,.1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.popular-tag {
  background: #e74c3c;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .72rem;
}
.type-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.td-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-mid);
}
.td-item i { color: var(--primary); width: 16px; }
.type-price {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 22px 28px;
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.price-text {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  animation: priceSlideIn .7s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes priceSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* 4억대 골드 shine */
.price-gold {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif;
  background: linear-gradient(90deg, #f0d070, #c8a030, #f5e070, #c8a030);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: priceSlideIn .7s cubic-bezier(.22,.61,.36,1) both,
             goldShine 2s linear .7s infinite;
  filter: drop-shadow(0 2px 8px rgba(200,160,30,.5));
}
@keyframes goldShine {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}
.floor-placeholder {
  background: linear-gradient(135deg, #f0eee8, #e8e5de);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px;
}
.floor-placeholder i { font-size: 3rem; color: var(--primary); opacity: .5; }
.floor-placeholder p { font-size: 1rem; font-weight: 600; color: var(--primary); }
.floor-placeholder ul { display: flex; flex-direction: column; gap: 8px; }
.floor-placeholder li {
  font-size: .85rem;
  color: var(--text-mid);
  background: rgba(255,255,255,.6);
  padding: 6px 16px;
  border-radius: 4px;
}
.floor-img {
  width: auto;
  max-width: 460px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  background: #fff;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.floor-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.type-floor-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

/* ============================================================
   FLOOR PLAN GRID (전체 타입 표시)
   ============================================================ */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.floor-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.floor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.floor-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e74c3c;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: .04em;
}
.floor-card-img {
  width: 100%;
  background: #f8f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.floor-card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.floor-card-info {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--border);
}
.floor-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.floor-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.floor-card-units {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26,58,92,.08);
  padding: 3px 10px;
  border-radius: 50px;
}
.floor-card-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.floor-card-specs span {
  font-size: .8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}
.floor-card-specs i {
  color: var(--primary);
  font-size: .75rem;
}
.floor-card-price {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.floor-card-price em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #f0d070, #fff0a0, #c8a030);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 2s linear infinite;
  margin-left: 4px;
}

@media (max-width: 1024px) {
  .floor-img { max-width: 400px; }
}
@media (max-width: 768px) {
  .floor-img { max-width: 100%; width: 100%; }
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.section-community { background: var(--bg-dark); padding: 100px 0; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.comm-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.comm-item:hover { background: rgba(255,255,255,.09); transform: translateY(-6px); }
.comm-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), #2a5080);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  color: var(--accent);
}
.comm-item h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.comm-item p { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.6; }

/* ============================================================
   MODEL HOUSE INFO
   ============================================================ */
.mh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mh-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mh-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mh-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  color: var(--accent);
}
.mh-card h3 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.mh-card p { font-size: .85rem; color: var(--text-mid); margin-bottom: 4px; }
.mh-card address { font-size: .85rem; color: var(--text-dark); font-weight: 600; margin-bottom: 8px; }
.mh-tel, .mh-hotline {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0;
  transition: color var(--transition);
}
.mh-tel:hover, .mh-hotline:hover { color: var(--accent); }
.mh-hotline { font-size: 1.4rem; color: var(--accent); }

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
  padding: 100px 0;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-benefits h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 28px; }
.benefit-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.benefit-list li i { color: var(--accent); font-size: 1rem; width: 18px; }
.contact-tel-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.contact-tel-box p { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 4px; }
.contact-tel-box a {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
}
.contact-tel-box span { font-size: .8rem; color: rgba(255,255,255,.5); }

/* 폼 */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--primary); }
.required { color: #e74c3c; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
}
.form-group input.error,
.form-group select.error { border-color: #e74c3c; }
.form-error { font-size: .8rem; color: #e74c3c; min-height: 1em; }

.privacy-group { margin-top: 4px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.check-text { font-size: .85rem; color: var(--text-mid); line-height: 1.5; }
.privacy-link { color: var(--primary); text-decoration: underline; }

.form-success {
  text-align: center;
  padding: 48px 20px;
}
.form-success i { font-size: 3.5rem; color: #27ae60; margin-bottom: 20px; }
.form-success h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 12px; }
.form-success p { color: var(--text-mid); font-size: .95rem; }
.success-sub { font-size: .82rem; color: var(--text-muted); margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #07111e;
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-tel p { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer-tel a { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.footer-info p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.9; }
.footer-ad { font-size: .82rem !important; color: rgba(255,255,255,.55) !important; margin-bottom: 6px; }
.footer-ad a { color: var(--accent-light); text-decoration: none; font-weight: 600; }
.footer-ad a:hover { text-decoration: underline; }
.footer-disclaimer {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
}
.footer-disclaimer p { font-size: .75rem; color: rgba(255,255,255,.28); line-height: 1.8; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.6rem;
  color: var(--text-muted);
  line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--text-dark); }
.modal-box h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 24px; font-weight: 700; }
.modal-content p { font-size: .88rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.modal-content strong { color: var(--primary); }
.modal-agree { margin-top: 12px; width: 100%; justify-content: center; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .num-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .num-item:nth-child(3n) { border-right: none; }
  .num-item:last-child, .num-item:nth-last-child(2), .num-item:nth-last-child(3) { border-bottom: none; }
  .location-wrap { grid-template-columns: 1fr; gap: 40px; }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .mh-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .smart-wrap { grid-template-columns: 1fr; gap: 48px; }
  .type-panel.active { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* HEADER */
  .gnb {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13,31,51,.97);
    backdrop-filter: blur(12px);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
  }
  .gnb.open { transform: translateY(0); opacity: 1; }
  .gnb ul { flex-direction: column; gap: 0; }
  .gnb a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1rem; }
  .hamburger { display: flex; }

  /* HERO */
  .hero-eyebrow { font-size: 1.1rem; letter-spacing: .08em; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); white-space: normal; }
  .hero-sub { font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; max-width: 320px; }
  .hero-badges { justify-content: center; }

  /* NOTICE */
  .notice-inner { flex-direction: column; align-items: flex-start; }
  .hero-notice { flex-direction: column; align-items: center; text-align: center; padding: 12px 16px; }
  .hero-notice .notice-text { text-align: center; }

  /* OVERVIEW */
  .overview-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .overview-card { padding: 24px 18px; }

  /* NUMBERS */
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-item { border: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  /* PREMIUM */
  .premium-grid { grid-template-columns: repeat(2, 1fr); }

  /* COMMUNITY */
  .community-grid { grid-template-columns: 1fr; }

  /* MH */
  .mh-grid { grid-template-columns: 1fr; }

  /* CONTACT */
  .contact-form-wrap { padding: 28px 20px; }

  /* FLOOR PLAN */
  .type-tabs { gap: 8px; }
  .type-tab { padding: 8px 18px; font-size: .82rem; }
  .type-details { grid-template-columns: 1fr; }
  .floor-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* FOOTER */
  .footer-top { flex-direction: column; text-align: center; }
  .footer-info p { font-size: .75rem; }
  .footer-disclaimer p { font-size: .7rem; }

  /* FLOAT CTA */
    .float-cta { width: 56px; height: 56px; bottom: 24px; right: 18px; }
  .float-cta i { font-size: 1.3rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .overview-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { gap: 8px; }
  .badge { font-size: .78rem; padding: 6px 13px; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-eyebrow { font-size: .95rem; }
  .brand-banner-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .brand-hero-title { white-space: normal; text-align: center; }
  .brand-banner-top { left: 16px; top: 20px; }
  .hero-notice { padding: 10px 12px; gap: 8px; }
  .hero-notice .notice-text { font-size: .82rem; }
  .price-value { font-size: 1.6rem; }
  .price-label { font-size: .95rem; }
  .floor-grid { grid-template-columns: 1fr; gap: 16px; }
}
