:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --text: #111827;
  --text-soft: #667085;
  --line: #e6ebf2;
  --blue: #2563eb;
  --blue-deep: #143878;
  --navy: #091a3b;
  --yellow: #f5cd11;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 36px rgba(15, 23, 42, 0.06);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow-block {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}
.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #66a3ff);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #374151;
}
.nav a {
  font-size: 15px;
  font-weight: 600;
}
.nav-highlight { color: var(--blue); }
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 42px;
  height: 42px;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: #0f172a;
  margin: 7px 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 19, 43, 0.12), rgba(9, 19, 43, 0.48)),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 35, 0.18), rgba(5, 15, 35, 0.62));
}
.hero-wrap {
  position: relative;
  z-index: 1;
  padding: 96px 0 124px;
}
.hero-content {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.hero-animate { animation: heroUp 0.9s cubic-bezier(.16, 1, .3, 1) both; }
.hero-animate-delay { animation: heroUp 0.9s cubic-bezier(.16, 1, .3, 1) 0.18s both; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-tag {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.hero-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}
.hero-subtitle {
  margin: 22px auto 0;
  max-width: 700px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.94);
}
.hero-intro-motion {
  position: relative;
  width: min(760px, 100%);
  height: 188px;
  margin: 42px auto 0;
}
.hero-float-card {
  position: absolute;
  min-width: 220px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 60px rgba(4, 12, 28, 0.26);
  backdrop-filter: blur(18px);
  text-align: left;
  animation: floatHero 5.6s ease-in-out infinite;
}
.hero-float-card span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 8px;
}
.hero-float-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero-float-card-a { left: 0; top: 18px; animation-delay: 0s; }
.hero-float-card-b { left: 50%; top: 0; transform: translateX(-50%); animation-delay: 0.7s; }
.hero-float-card-c { right: 0; bottom: 18px; animation-delay: 1.4s; }
@keyframes floatHero {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hero-float-card-b { animation-name: floatHeroCenter; }
@keyframes floatHeroCenter {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
}
.hero-scroll-cue em {
  width: 2px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.12));
  animation: scrollCue 1.8s ease-in-out infinite;
}
.hero-scroll-cue small { font-size: 11px; letter-spacing: 0.18em; font-weight: 800; }
@keyframes scrollCue {
  0% { opacity: 0.45; transform: translateY(-6px); }
  50% { opacity: 1; transform: translateY(4px); }
  100% { opacity: 0.45; transform: translateY(-6px); }
}

.identity-section,
.review-section,
.contact-section,
.targets-section,
.faq-section {
  padding: 108px 0;
}
.products-section,
.trust-section {
  padding: 94px 0;
}
.identity-section,
.contact-section,
.targets-section { background: var(--surface); }
.review-section,
.faq-section { background: #f8fafc; }

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.identity-title {
  margin: 20px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.identity-title span {
  position: relative;
  display: inline-block;
}
.identity-title span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 14px;
  background: rgba(37, 99, 235, 0.18);
  z-index: -1;
  border-radius: 999px;
}
.title-divider {
  width: 1px;
  height: 56px;
  background: #d5dbe5;
  margin: 30px auto;
}
.identity-desc {
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.9;
}
.identity-desc strong { color: var(--text); }
.section-topline,
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.compact-head { margin-bottom: 28px; }
.section-title {
  margin: 0;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.section-mini-copy,
.section-description {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}
.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--blue-deep);
}
.section-more-link span { transition: transform 0.2s ease; }
.section-more-link:hover span { transform: translateX(3px); }

.schedule-filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 28px;
}
.filter-chip {
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #1f2937;
  font-weight: 700;
}
.filter-chip.is-active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
}

.product-grid,
.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card,
.extra-card,
.review-card,
.contact-card,
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.product-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-visual {
  position: relative;
  min-height: 240px;
  background: linear-gradient(180deg, #d9e6f8 0%, #12284b 100%);
}
.product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.08), rgba(10, 20, 40, 0.82));
}
.product-visual-inner {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px 24px 24px;
  color: #fff;
}
.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.product-badge {
  display: inline-flex;
  height: 32px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.product-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  color: #fff;
}
.product-content { padding: 22px 24px 26px; }
.product-summary {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}
.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.product-meta-item {
  min-height: 86px;
  padding: 16px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.product-meta-item span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}
.product-meta-item strong {
  font-size: 16px;
  line-height: 1.45;
}
.product-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.btn,
.contact-submit {
  height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #2d7eff);
  color: #fff;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.22);
}
.section-empty {
  width: 100%;
  padding: 28px;
  border-radius: 22px;
  border: 1px dashed #c9d3e0;
  text-align: center;
  color: #64748b;
  background: rgba(255, 255, 255, 0.84);
}

.price-guarantee-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 56px 58px;
  background: linear-gradient(90deg, #07122a 0%, #0d2248 45%, #142f5f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.price-guarantee-label {
  display: inline-block;
  color: #67a7ff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}
.price-guarantee-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.price-guarantee-copy p {
  margin: 28px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.72;
}
.price-guarantee-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.price-guarantee-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 900;
  color: #67a7ff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}
.price-guarantee-side strong {
  font-size: 26px;
  font-weight: 900;
}
.price-guarantee-side span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.review-slider { position: relative; margin-top: 24px; }
.review-viewport { overflow: hidden; }
.review-track {
  display: flex;
  gap: 22px;
  transition: transform 0.32s ease;
  will-change: transform;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 0;
}
.review-dot.is-active { background: var(--blue); }
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 22, 47, 0.88);
  color: #fff;
  font-size: 28px;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}
.review-nav.prev { left: -10px; }
.review-nav.next { right: -10px; }
.review-nav.is-hidden,
.review-dots.is-hidden { display: none; }
.review-card {
  overflow: hidden;
  flex: 0 0 calc((100% - 22px) / 2);
}
.review-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #e5eefb, #c9d7ea);
  overflow: hidden;
}
.review-thumb img { width: 100%; height: 100%; object-fit: cover; }
.review-body { padding: 22px; }
.review-region {
  display: inline-flex;
  padding: 0 12px;
  height: 30px;
  border-radius: 999px;
  align-items: center;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.review-body h3 { margin: 14px 0 10px; font-size: 24px; line-height: 1.28; }
.review-body p { margin: 0; color: var(--text-soft); line-height: 1.75; }

.extra-card { padding: 28px; }
.extra-card h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.3; }
.extra-card p { margin: 0; color: var(--text-soft); line-height: 1.75; }
.extra-chip {
  display: inline-flex;
  min-height: 30px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  padding: 22px 24px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--blue);
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding-top: 16px;
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-card {
  padding: 34px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-grid label { display: grid; gap: 10px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid span {
  font-size: 14px;
  font-weight: 800;
  color: #374151;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  padding: 16px 18px;
  outline: none;
  font: inherit;
  color: #111827;
}
.form-grid input::placeholder,
.form-grid textarea::placeholder { color: #94a3b8; }
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #9dbfff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.form-grid textarea { min-height: 138px; resize: vertical; }
.form-grid label.full.consent-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  text-align: center;
}
.form-grid label.full.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: #2563eb;
}
.form-grid label.full.consent-check span { margin: 0; line-height: 1.5; }
.contact-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  margin: 0 auto;
  padding: 0 28px;
}
.form-result {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
}
.form-result.is-pending { color: #0f4fa8; }
.form-result.is-success { color: #166534; }
.form-result.is-error { color: #b42318; }
.req { color: #ef4444; font-style: normal; }

.footer {
  padding: 42px 0 110px;
  background: #111827;
  color: rgba(255, 255, 255, 0.82);
}
.footer-inner strong {
  display: block;
  font-size: 18px;
  color: #fff;
}
.footer-inner p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.sticky-inquiry-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  background: rgba(9, 20, 44, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -8px 34px rgba(2, 6, 23, 0.28);
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  animation: slideUpBar 0.7s cubic-bezier(.16, 1, .3, 1) 0.15s forwards, bannerPulse 3.2s ease-in-out infinite;
}
@keyframes slideUpBar {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
@keyframes bannerPulse {
  0%, 100% { box-shadow: 0 -8px 34px rgba(2, 6, 23, 0.24); }
  50% { box-shadow: 0 -12px 42px rgba(37, 99, 235, 0.18); }
}
.sib-content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.sib-text-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sib-badge {
  background: #ef4444;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.38);
}
.sib-badge-blink { animation: badgeBlinkStrong 1.2s ease-in-out infinite; }
@keyframes badgeBlinkStrong {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(239, 68, 68, 0.35); }
  50% { opacity: 0.45; transform: scale(1.08); box-shadow: 0 0 24px rgba(239, 68, 68, 0.7); }
}
.sib-title { margin: 0; color: #fff; font-size: 17px; font-weight: 800; }
.sib-sub { color: rgba(255, 255, 255, 0.74); font-size: 14px; }
.sib-btn-group { display: flex; gap: 10px; align-items: center; justify-content: center; }
.sib-btn-group-full { min-width: 260px; }
.sib-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 132px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-inquiry {
  background: linear-gradient(135deg, var(--blue), #2d7eff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}
.sib-btn-wide { min-width: 220px; }
.sib-btn:hover { transform: translateY(-1px); }

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
}
.schedule-modal[aria-hidden='false'] { display: block; }
.schedule-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 39, 0.56);
  backdrop-filter: blur(6px);
}
.schedule-modal-panel {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 24px));
  max-height: min(88svh, 920px);
  margin: 4svh auto;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.24);
}
.schedule-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 20, 40, 0.74);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.schedule-modal-body {
  max-height: inherit;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #f8fbff, #ffffff 220px);
}
.modal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}
.modal-card h3 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.12;
}
.modal-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}
.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.modal-meta-box {
  min-height: 92px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.modal-meta-box span { color: #667085; font-size: 13px; font-weight: 700; }
.modal-meta-box strong { font-size: 17px; line-height: 1.4; }
.modal-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.modal-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
}
.modal-action { margin-top: 18px; }
.modal-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .product-grid,
  .extra-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-guarantee-card,
  .modal-meta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .topbar-inner { min-height: 68px; }
  .mobile-menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav.is-open { display: flex; }
  .hero-section { min-height: 82svh; }
  .hero-wrap { padding: 82px 0 100px; }
  .hero-tag { font-size: 12px; }
  .hero-subtitle br { display: none; }
  .hero-intro-motion { height: 214px; margin-top: 34px; }
  .hero-float-card { min-width: auto; width: min(100%, 320px); }
  .hero-float-card-a { left: 0; top: 14px; }
  .hero-float-card-b { top: 72px; }
  .hero-float-card-c { right: 0; bottom: 20px; }
  .product-grid,
  .extra-grid,
  .form-grid { grid-template-columns: 1fr; }
  .product-title { font-size: 28px; }
  .price-guarantee-card { padding: 34px 24px; }
  .price-guarantee-copy h2 { font-size: 42px; }
  .price-guarantee-copy p { font-size: 16px; }
  .review-card { flex: 0 0 calc((100% - 22px) / 2); }
  .review-nav.prev { left: -6px; }
  .review-nav.next { right: -6px; }
  .sib-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .sib-text-group {
    justify-content: center;
    text-align: center;
  }
  .sib-btn-group {
    width: 100%;
    justify-content: center;
  }
  .sib-btn-group-full {
    min-width: 0;
    width: 100%;
  }
  .sib-btn,
  .sib-btn-wide {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
  }
  .schedule-modal-panel {
    width: calc(100% - 12px);
    margin: 2svh auto;
    max-height: 96svh;
    border-radius: 22px;
  }
  .schedule-modal-body { padding: 16px; }
  .modal-card { padding: 18px; }
  .form-grid label.full.consent-check { gap: 8px; }
  .contact-submit { width: 100%; min-width: 0; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 42px; }
  .hero-subtitle { font-size: 16px; }
  .hero-intro-motion { height: 268px; }
  .hero-float-card {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
  .hero-float-card-a { top: 0; }
  .hero-float-card-b { top: 78px; }
  .hero-float-card-c { top: 156px; bottom: auto; }
  .hero-scroll-cue { display: none; }
  .btn,
  .contact-submit { width: 100%; }
  .review-card { flex: 0 0 100%; }
  .review-nav { display: none; }
  .footer { padding-bottom: 132px; }
  .sib-title { font-size: 15px; }
  .sib-sub { display: none; }
}


/* =========================================================
   footer legal links / company meta
   ========================================================= */
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-company-meta {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

/* =========================================================
   content / policy pages
   ========================================================= */
.subpage-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.subpage-main {
  flex: 1;
  padding: 88px 0 110px;
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.page-hero {
  padding: 24px 0 28px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
}

.breadcrumbs a { color: #143878; }

.page-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.page-subtitle {
  margin: 14px 0 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.8;
}

.doc-card {
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.06);
}

.doc-card + .doc-card { margin-top: 18px; }

.doc-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.doc-card h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  line-height: 1.45;
}

.doc-card p,
.doc-card li,
.doc-card dd {
  color: #344054;
  font-size: 16px;
  line-height: 1.9;
}

.doc-card ul,
.doc-card ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

.doc-card dl {
  margin: 0;
  display: grid;
  gap: 16px;
}

.doc-card dt {
  font-size: 14px;
  font-weight: 800;
  color: #143878;
  margin-bottom: 4px;
}

.inline-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.inline-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  background: #091a3b;
  color: #fff;
  font-weight: 800;
}

.inline-cta-link.secondary {
  background: #eef4ff;
  color: #143878;
}

@media (max-width: 768px) {
  .subpage-main {
    padding: 72px 0 96px;
  }

  .doc-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .footer-links {
    gap: 10px 14px;
  }
}


.privacy-view-btn {
  border: 0;
  background: none;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-popup {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
}

.privacy-popup[aria-hidden='false'] {
  display: block;
}

.privacy-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(5px);
}

.privacy-popup-panel {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 24px));
  margin: 7vh auto 0;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
  border: 1px solid var(--line);
}

.privacy-popup-content {
  padding: 30px 28px 28px;
}

.privacy-popup-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.privacy-popup-content h3 {
  margin: 16px 0 0;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.privacy-popup-list {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.8;
}

.privacy-popup-list li + li {
  margin-top: 10px;
}

.privacy-popup-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.privacy-popup-link {
  color: var(--blue-deep);
  font-weight: 800;
}

.privacy-popup-confirm {
  min-width: 116px;
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #2d7eff);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.privacy-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 768px) {
  .form-grid label.full.consent-check {
    justify-content: center;
    flex-wrap: wrap;
  }

  .privacy-popup-panel {
    width: calc(100% - 16px);
    margin-top: 3vh;
    border-radius: 22px;
  }

  .privacy-popup-content {
    padding: 24px 18px 22px;
  }

  .privacy-popup-content h3 {
    font-size: 22px;
  }

  .privacy-popup-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-popup-link,
  .privacy-popup-confirm {
    width: 100%;
    text-align: center;
  }
}
