*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #0c4da2;
  --blue-dark: #093a7a;
  --blue-light: #e8f0fe;
  --blue-50: #f0f5ff;
  --orange: #ff6b35;
  --orange-dark: #e55a28;
  --orange-light: #fff3ee;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --section-padding: 80px 0;
}
html { scroll-behavior: smooth; scroll-padding-top: 60px; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-size: 32px; font-weight: 800; color: var(--gray-900);
  text-align: center; margin-bottom: 12px; letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px; color: var(--gray-500); text-align: center; margin-bottom: 48px;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-orange { background: var(--orange-light); color: var(--orange); }

/* ── Top Bar ── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200); height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; transition: box-shadow .2s;
}
.top-bar.scrolled { box-shadow: var(--shadow-md); }
.top-bar-logo {
  font-size: 18px; font-weight: 800; color: var(--blue);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.top-bar-logo span { color: var(--gray-900); }
.top-bar-nav { display: flex; gap: 4px; }
.top-bar-nav a {
  padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
  color: var(--gray-600); text-decoration: none; transition: all .2s;
}
.top-bar-nav a:hover { color: var(--blue); background: var(--blue-50); }
.top-bar-cta {
  padding: 8px 20px; border-radius: 24px; background: var(--orange);
  color: #fff; font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.top-bar-cta:hover { background: var(--orange-dark); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
  padding: 80px 20px 120px;
  /* 커스텀: 배경 이미지 URL 입력 */
  background: linear-gradient(135deg, #0c4da2 0%, #1a6dd4 40%, #2980d9 70%, #0c4da2 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,224L48,208C96,192,192,160,288,170.7C384,181,480,235,576,229.3C672,224,768,160,864,138.7C960,117,1056,139,1152,154.7C1248,171,1344,181,1392,186.7L1440,192V320H0Z"/></svg>') no-repeat bottom/cover;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badges { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.hero-badge {
  padding: 6px 16px; border-radius: 24px; font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
}
.hero-badge.accent { background: var(--orange); border-color: var(--orange); }
/* 커스텀: 단지명 입력 */
.hero h1 {
  font-size: 48px; font-weight: 900; color: #fff; line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -1px;
}
.hero h1 em { font-style: normal; color: #ffd166; }
/* 커스텀: 분양가 입력 */
.hero-price {
  font-size: 22px; color: rgba(255,255,255,.9); margin-bottom: 8px; font-weight: 500;
}
.hero-price strong { color: #ffd166; font-weight: 800; font-size: 28px; }
/* 커스텀: 위치 입력 */
.hero-location {
  font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 32px;
}

/* Countdown */
.countdown-wrap {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.25); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 12px 24px; margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.1);
}
.countdown-label { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600; }
.countdown-timer { display: flex; gap: 6px; }
.countdown-unit {
  background: rgba(255,255,255,.15); border-radius: 8px; padding: 6px 10px;
  min-width: 48px; text-align: center;
}
.countdown-unit .num { font-size: 22px; font-weight: 800; color: #fff; display: block; line-height: 1.2; }
.countdown-unit .lbl { font-size: 10px; color: rgba(255,255,255,.6); text-transform: uppercase; }

/* CTA pulse */
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 30px; font-size: 18px; font-weight: 800;
  background: var(--orange); color: #fff; text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,107,53,.4);
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2s infinite;
  border: none; cursor: pointer;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,.5); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,107,53,.4); }
  50% { box-shadow: 0 4px 40px rgba(255,107,53,.6); }
}
.hero-cta svg { width: 20px; height: 20px; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); font-size: 13px; display: flex; flex-direction: column;
  align-items: center; gap: 8px; animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust Badges ── */
.trust-bar {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.trust-items {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--gray-700);
}
.trust-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ── Summary Cards ── */
.summary { padding: var(--section-padding); background: #fff; }
.summary-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.summary-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.summary-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.summary-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  background: var(--blue-light);
}
.summary-card:nth-child(2) .summary-icon { background: #e8faf0; }
.summary-card:nth-child(3) .summary-icon { background: #fef3e2; }
.summary-card:nth-child(4) .summary-icon { background: #f3e8ff; }
.summary-label { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; font-weight: 600; }
/* 커스텀: 각 항목 값 입력 */
.summary-value { font-size: 26px; font-weight: 800; color: var(--gray-900); letter-spacing: -0.5px; }
.summary-detail { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

/* ── Price Table ── */
.price-section { padding: var(--section-padding); background: var(--gray-50); }
.price-table-wrap {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  overflow: hidden;
}
.price-table {
  width: 100%; border-collapse: collapse; font-size: 15px;
}
.price-table thead { background: var(--blue); }
.price-table th {
  padding: 16px 20px; color: #fff; font-weight: 700; text-align: center;
  font-size: 14px; letter-spacing: 0.3px;
}
.price-table td {
  padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--gray-100);
}
.price-table tbody tr { transition: background .2s; }
.price-table tbody tr:hover { background: var(--blue-50); }
.price-table tbody tr[onclick]::after { content: ' \2192'; font-size: 12px; color: var(--gray-400); }
.price-table .type-name { font-weight: 700; color: var(--blue); text-align: left; }
.price-table .price-highlight { font-weight: 800; color: var(--gray-900); font-size: 17px; }
.price-note {
  padding: 16px 24px; background: var(--gray-50); font-size: 13px; color: var(--gray-500);
  border-top: 1px solid var(--gray-200);
}

/* ── Location ── */
.location-section { padding: var(--section-padding); background: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.location-map {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 400px;
  /* 커스텀: 카카오맵 ID 또는 이미지 */
  background: var(--gray-100); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.location-map-placeholder {
  color: var(--gray-400); font-size: 14px; text-align: center;
}
.location-map-placeholder svg { width: 48px; height: 48px; margin-bottom: 8px; opacity: .4; }
.location-info { display: flex; flex-direction: column; gap: 24px; }
.loc-category { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.loc-category::before {
  content: ''; width: 3px; height: 16px; background: var(--blue); border-radius: 2px;
}
.loc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.loc-list li {
  display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gray-700);
}
.loc-list .loc-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--blue-50);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  flex-shrink: 0;
}
.loc-list .loc-time {
  margin-left: auto; font-weight: 700; color: var(--blue); font-size: 13px;
  white-space: nowrap;
}

/* ── Price Comparison Chart ── */
.comparison-section { padding: var(--section-padding); background: var(--gray-50); }
.chart-container {
  background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
  max-width: 800px; margin: 0 auto;
}
.chart-canvas-wrap { position: relative; height: 360px; }
.chart-source {
  text-align: right; margin-top: 16px; font-size: 12px; color: var(--gray-400);
}
.chart-source a { color: var(--blue); text-decoration: none; }
.chart-highlight-box {
  display: flex; justify-content: center; gap: 24px; margin-top: 24px; flex-wrap: wrap;
}
.chart-highlight {
  padding: 16px 28px; border-radius: var(--radius); text-align: center;
}
.chart-highlight.saving { background: #dcfce7; }
.chart-highlight.saving .ch-value { color: #16a34a; }
.chart-highlight .ch-label { font-size: 12px; color: var(--gray-500); margin-bottom: 2px; }
.chart-highlight .ch-value { font-size: 24px; font-weight: 800; }

/* ── Floor Plans ── */
.floorplan-section { padding: var(--section-padding); background: #fff; }
.fp-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.fp-tab {
  padding: 10px 24px; border-radius: 24px; font-size: 14px; font-weight: 700;
  border: 2px solid var(--gray-200); background: #fff; color: var(--gray-600);
  cursor: pointer; transition: all .2s;
}
.fp-tab.active, .fp-tab:hover { border-color: var(--blue); background: var(--blue); color: #fff; }
.fp-content { max-width: 700px; margin: 0 auto; }
.fp-panel { display: none; }
.fp-panel.active { display: block; }
.fp-image {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  /* 커스텀: 평면도 이미지 URL 입력 */
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--gray-300);
}
.fp-image-placeholder { text-align: center; color: var(--gray-400); font-size: 14px; }
.fp-specs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px;
}
.fp-spec {
  text-align: center; padding: 12px; background: var(--gray-50); border-radius: var(--radius-sm);
}
.fp-spec-label { font-size: 11px; color: var(--gray-400); margin-bottom: 2px; }
.fp-spec-value { font-size: 15px; font-weight: 700; color: var(--gray-800); }

/* ── Payment Schedule ── */
.payment-section { padding: var(--section-padding); background: var(--gray-50); }
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.payment-table-wrap {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden;
}
.payment-table-wrap h3 {
  padding: 20px 24px; font-size: 18px; font-weight: 800; color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
}
.payment-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.payment-table th {
  padding: 12px 20px; background: var(--gray-50); font-weight: 700;
  color: var(--gray-600); text-align: left; font-size: 13px;
  border-bottom: 1px solid var(--gray-200);
}
.payment-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--gray-100);
}
.payment-table .amount { font-weight: 700; color: var(--gray-900); }
.payment-table .pct { color: var(--blue); font-weight: 700; }

/* ── Timeline ── */
.timeline-section { padding: var(--section-padding); background: #fff; }
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding: 0 20px; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: var(--gray-200); transform: translateX(-50%);
}
.tl-item {
  position: relative; display: flex; align-items: flex-start;
  margin-bottom: 48px;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.tl-content {
  width: calc(50% - 40px); background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px 24px;
  transition: transform .2s, box-shadow .2s;
}
.tl-content:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tl-dot {
  position: absolute; left: 50%; top: 20px; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--blue);
  border: 3px solid #fff; box-shadow: 0 0 0 3px var(--blue-light); z-index: 2;
}
.tl-item.completed .tl-dot { background: #16a34a; box-shadow: 0 0 0 3px #dcfce7; }
.tl-item.active .tl-dot {
  background: var(--orange); box-shadow: 0 0 0 3px var(--orange-light);
  animation: tl-pulse 2s infinite;
}
@keyframes tl-pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--orange-light); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,53,.15); }
}
/* 커스텀: 각 일정 날짜 입력 */
.tl-date { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.tl-title { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.tl-desc { font-size: 13px; color: var(--gray-500); }

/* ── Registration Form ── */
.register-section {
  padding: 80px 0 100px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.register-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.05) 0%, transparent 50%);
}
.register-inner {
  position: relative; z-index: 2; max-width: 560px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg); padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.register-inner h2 {
  font-size: 28px; font-weight: 900; color: var(--gray-900);
  text-align: center; margin-bottom: 8px;
}
.register-inner .reg-sub {
  text-align: center; font-size: 14px; color: var(--gray-500); margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; font-weight: 700; color: var(--gray-700);
  margin-bottom: 6px;
}
.form-label .required { color: var(--orange); }
.form-input {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 15px; font-family: inherit;
  transition: border-color .2s, box-shadow .2s; outline: none;
  background: var(--gray-50);
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); background: #fff; }
.form-input::placeholder { color: var(--gray-400); }
textarea.form-input { resize: vertical; min-height: 80px; }
.form-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.form-chip {
  padding: 10px 20px; border-radius: 24px; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--gray-200); background: #fff; color: var(--gray-600);
  cursor: pointer; transition: all .2s;
}
.form-chip.selected { border-color: var(--blue); background: var(--blue); color: #fff; }
.form-submit {
  width: 100%; padding: 16px; border: none; border-radius: var(--radius);
  font-size: 17px; font-weight: 800; background: var(--orange); color: #fff;
  cursor: pointer; transition: background .2s, transform .1s;
  font-family: inherit; margin-top: 8px;
}
.form-submit:hover { background: var(--orange-dark); }
.form-submit:active { transform: scale(.98); }
.form-privacy {
  text-align: center; margin-top: 12px; font-size: 11px; color: var(--gray-400);
}
.form-privacy a { color: var(--gray-500); text-decoration: underline; }

/* ── Legal ── */
.legal-section {
  padding: 48px 0; background: var(--gray-900); color: var(--gray-400);
}
.legal-content { max-width: 800px; margin: 0 auto; font-size: 12px; line-height: 1.8; }
.legal-content h4 { color: var(--gray-300); font-size: 13px; margin-bottom: 12px; }
.legal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px;
}
.legal-item .legal-label { font-size: 11px; color: var(--gray-500); margin-bottom: 2px; }
.legal-item .legal-value { font-size: 13px; color: var(--gray-300); font-weight: 600; }
.legal-text { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }
.legal-text p { margin-bottom: 8px; }
.legal-powered {
  text-align: center; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.legal-powered a { color: var(--blue-light); text-decoration: none; font-weight: 600; }

/* ── Floating CTA ── */
.floating-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: #fff; border-top: 1px solid var(--gray-200);
  padding: 12px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  transform: translateY(100%); transition: transform .3s;
}
.floating-cta.visible { transform: translateY(0); }
.floating-left { font-size: 13px; color: var(--gray-500); }
.floating-left strong { color: var(--gray-900); font-size: 15px; display: block; }
.floating-buttons { display: flex; gap: 8px; }
.floating-btn {
  padding: 12px 24px; border-radius: 24px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .2s; border: none; cursor: pointer;
  font-family: inherit; display: flex; align-items: center; gap: 6px;
}
.floating-btn-primary { background: var(--orange); color: #fff; }
.floating-btn-primary:hover { background: var(--orange-dark); }
.floating-btn-secondary { background: var(--blue); color: #fff; }
.floating-btn-secondary:hover { background: var(--blue-dark); }

/* ── Section nav dots ── */
.section-nav {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
  z-index: 150; display: flex; flex-direction: column; gap: 12px;
}
.section-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300);
  cursor: pointer; transition: all .2s; border: none; padding: 0;
}
.section-dot.active { background: var(--blue); transform: scale(1.3); }
.section-dot:hover { background: var(--blue); }

/* ── Responsive ── */
@media (max-width: 768px) {
  :root { --section-padding: 56px 0; }
  .top-bar-nav { display: none; }
  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; margin-bottom: 32px; }
  .hero { min-height: 100svh; padding: 100px 20px 100px; }
  .hero h1 { font-size: 32px; }
  .hero-price { font-size: 18px; }
  .hero-price strong { font-size: 22px; }
  .countdown-unit { min-width: 40px; padding: 4px 8px; }
  .countdown-unit .num { font-size: 18px; }
  .hero-scroll { display: none; }

  .summary-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .summary-card { padding: 20px 16px; }
  .summary-value { font-size: 22px; }
  .summary-icon { width: 44px; height: 44px; font-size: 22px; }

  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 12px 10px; }
  .price-table .price-highlight { font-size: 15px; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 280px; }

  .chart-container { padding: 20px; }
  .chart-canvas-wrap { height: 280px; }
  .chart-highlight-box { gap: 12px; }
  .chart-highlight { padding: 12px 20px; }
  .chart-highlight .ch-value { font-size: 20px; }

  .fp-specs { grid-template-columns: repeat(2, 1fr); }

  .payment-grid { grid-template-columns: 1fr; }
  .payment-table td, .payment-table th { padding: 10px 16px; }

  .timeline::before { left: 20px; }
  .tl-item, .tl-item:nth-child(odd) { flex-direction: row; text-align: left; padding-left: 48px; }
  .tl-content { width: 100%; }
  .tl-dot { left: 20px; }

  .register-inner { padding: 32px 24px; margin: 0 16px; }
  .register-inner h2 { font-size: 22px; }

  .legal-grid { grid-template-columns: 1fr; gap: 12px; }

  .floating-left { display: none; }
  .floating-cta { justify-content: stretch; padding: 10px 16px; }
  .floating-buttons { flex: 1; }
  .floating-btn { flex: 1; justify-content: center; padding: 14px 12px; }

  .section-nav { display: none; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .countdown-wrap { padding: 10px 16px; }
  .hero-cta { padding: 14px 28px; font-size: 16px; }
}
