/* ========================================
   義翔工業 空き家・空き地サポートサイト
   参考: 岩野建設スタイル
   ======================================== */

:root {
  --navy:  #0e2a5e;
  --blue:  #1e5fa8;
  --sky:   #4fb8e0;
  --mist:  #eaf4fb;
  --dark:  #111827;
  --white: #ffffff;
  --text:  #1f2937;
  --gray:  #6b7280;
  --light: #f3f4f6;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--dark);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.35); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--navy);
  border: 2px solid var(--sky);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: white;
  flex-shrink: 0;
}
.logo-name { display: block; font-size: 14px; font-weight: 700; color: white; }
.logo-sub  { display: block; font-size: 10px; color: var(--sky); margin-top: 1px; }

/* Hamburger */
.hamburger {
  background: none; border: none; cursor: pointer;
  padding: 8px; display: flex; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: white; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.overlay.show { opacity: 1; pointer-events: all; }

/* Drawer */
.nav-drawer {
  position: fixed; top: 64px; right: 0;
  width: min(320px, 85vw);
  height: calc(100vh - 64px);
  background: var(--dark);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 1000;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer ul { padding: 16px 0; flex: 1; }
.nav-drawer ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  color: rgba(255,255,255,.85);
  font-size: 14px; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s, color .2s;
}
.nav-drawer ul li a:hover { background: rgba(79,184,224,.1); color: var(--sky); }
.nav-drawer ul li a::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--sky); flex-shrink: 0;
}
.drawer-tel {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.drawer-tel a { display: block; font-size: 18px; font-weight: 700; color: white; margin-bottom: 4px; }
.drawer-tel span { font-size: 11px; color: rgba(255,255,255,.5); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #06101f 0%, #0e2a5e 60%, #1a3a6e 100%);
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.38);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; width: 100%;
  margin: 0 auto;
  padding: 130px 24px 110px;
}
.hero-label {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--sky);
  color: var(--sky);
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900; color: white; line-height: 1.3;
  margin-bottom: 24px;
}
.hero-text {
  font-size: 15px; color: rgba(255,255,255,.82);
  line-height: 2; margin-bottom: 40px;
  max-width: 520px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--sky); color: var(--dark);
  font-size: 14px; font-weight: 700;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; }
.btn-outline {
  display: inline-block; padding: 14px 36px;
  border: 2px solid white; color: white;
  font-size: 14px; font-weight: 700;
  transition: all .2s;
}
.btn-outline:hover { background: white; color: var(--dark); }

/* シルエット */
.hero-silhouette {
  position: absolute; bottom: 0; left: 0;
  width: 100%; z-index: 2; line-height: 0;
}
.hero-silhouette svg { width: 100%; display: block; }

/* ─── SECTION HEADING ─── */
.section-heading { text-align: center; margin-bottom: 56px; }
.section-heading .en {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .3em; color: var(--blue); margin-bottom: 8px;
}
.section-heading .ja {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 900; color: var(--dark);
}

/* ─── WORRIES ─── */
.section-worries { padding: 88px 0; background: white; }
.worries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.worry-card {
  padding: 28px 20px;
  background: var(--mist);
  border-top: 3px solid var(--blue);
  border-radius: 2px;
}
.worry-icon { font-size: 28px; margin-bottom: 12px; }
.worry-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.worry-card p  { font-size: 13px; color: var(--gray); line-height: 1.8; }
.worries-lead {
  text-align: center; font-size: 18px; font-weight: 700;
  color: var(--navy); line-height: 2.2;
}

/* ─── SERVICE BLOCKS ─── */
.service-block {
  position: relative;
  min-height: 65vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.service-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.service-block.bg-akiya   .service-bg { background: linear-gradient(135deg,#0a1628,#162540); background-image: url('../images/akiya.jpg'); background-size: cover; background-position: center; }
.service-block.bg-akichi  .service-bg { background: linear-gradient(135deg,#081a08,#162a14); background-image: url('../images/akichi.jpg'); background-size: cover; background-position: center; }
.service-block.bg-subsidy .service-bg { background: linear-gradient(135deg,#1a1406,#24200a); background-image: url('../images/subsidy.jpg'); background-size: cover; background-position: center; }
.service-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.56);
}

.service-wrap {
  position: relative; z-index: 2;
  width: 100%; max-width: 1100px;
  margin: 0 auto; padding: 88px 24px;
}
.service-inner { max-width: 460px; color: white; }
.service-block.right .service-inner { margin-left: auto; }

.service-en {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: .25em; color: var(--sky); margin-bottom: 12px;
}
.service-block h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; line-height: 1.3; margin-bottom: 20px;
}
.service-block p {
  font-size: 14px; color: rgba(255,255,255,.85);
  line-height: 2; margin-bottom: 28px;
}
.btn-detail {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px;
  border: 2px solid white; color: white;
  font-size: 13px; font-weight: 700;
  transition: all .2s;
}
.btn-detail:hover { background: white; color: var(--dark); }

/* ─── FLOW ─── */
.section-flow { padding: 88px 0; background: var(--light); }
.flow-steps {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 0;
  flex-wrap: nowrap; overflow-x: auto;
  padding-bottom: 8px;
}
.flow-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1; min-width: 110px; padding: 0 4px;
  position: relative;
}
.flow-item:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -10px; top: 20px;
  font-size: 22px; color: var(--sky);
  font-weight: 700;
}
.flow-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; margin-bottom: 10px; flex-shrink: 0;
}
.flow-item h3 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.flow-item p  { font-size: 11px; color: var(--gray); line-height: 1.6; }

/* ─── WORKS ─── */
.section-works { padding: 88px 0; background: white; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 40px;
}
.work-card {
  display: block; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
  background: white;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.work-img {
  height: 200px;
  background: linear-gradient(135deg,#1a1f2e,#0e1520);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.work-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  color: rgba(255,255,255,.28); font-size: 11px;
  text-align: center; padding: 16px;
  border: 1px dashed rgba(255,255,255,.18);
}
.work-body { padding: 16px 20px; }
.work-tag {
  display: inline-block; padding: 3px 10px;
  background: var(--mist); color: var(--blue);
  font-size: 11px; font-weight: 700; margin-bottom: 8px;
}
.work-body h3 { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 4px; }
.work-body p  { font-size: 12px; color: var(--gray); }
.works-more { text-align: center; }
.works-more a { font-size: 14px; font-weight: 700; color: var(--blue); text-decoration: underline; }

/* ─── REASONS ─── */
.section-reasons { padding: 88px 0; background: var(--navy); }
.section-reasons .section-heading .en { color: var(--sky); }
.section-reasons .section-heading .ja { color: white; }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reason-card {
  padding: 28px 20px;
  background: rgba(255,255,255,.07);
  border-top: 3px solid var(--sky);
  border-radius: 2px;
}
.reason-num { font-size: 11px; font-weight: 700; color: var(--sky); letter-spacing: .1em; margin-bottom: 10px; }
.reason-card h3 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 10px; }
.reason-card p  { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.8; }

/* ─── CONTACT CTA ─── */
.section-cta {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center; color: white;
}
.cta-sub  { font-size: 11px; font-weight: 700; letter-spacing: .3em; color: var(--sky); margin-bottom: 12px; }
.section-cta h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 16px; }
.cta-text {
  font-size: 14px; color: rgba(255,255,255,.85);
  line-height: 2; margin-bottom: 40px;
}
.cta-tel-wrap { margin-bottom: 32px; }
.cta-tel { display: inline-block; font-size: 38px; font-weight: 900; color: white; letter-spacing: .05em; margin-bottom: 6px; }
.cta-tel:hover { color: var(--sky); }
.cta-hours { display: block; font-size: 12px; color: rgba(255,255,255,.7); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-cta-primary {
  display: inline-block; padding: 14px 40px;
  background: white; color: var(--navy);
  font-size: 14px; font-weight: 700;
  transition: all .2s;
}
.btn-cta-primary:hover { background: var(--sky); color: var(--dark); }
.btn-cta-outline {
  display: inline-block; padding: 14px 40px;
  border: 2px solid white; color: white;
  font-size: 14px; font-weight: 700;
  transition: all .2s;
}
.btn-cta-outline:hover { background: white; color: var(--navy); }

/* ─── FOOTER ─── */
footer { background: var(--dark); padding: 64px 0 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.footer-logo-wrap .logo-mark { width: 48px; height: 48px; font-size: 24px; }
.footer-company { font-size: 16px; font-weight: 700; color: white; }
.footer-dept    { font-size: 12px; color: var(--sky); margin-top: 2px; }
.footer-address {
  font-size: 13px; line-height: 2;
  color: rgba(255,255,255,.65); margin-bottom: 40px;
}
.footer-address a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-address a:hover { color: white; }
.footer-nav {
  display: flex; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; margin-bottom: 32px;
}
.footer-nav a {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 20px 6px 0;
  font-size: 13px; color: rgba(255,255,255,.62);
  width: 33.33%;
  transition: color .2s;
}
.footer-nav a::before { content: '›'; color: var(--sky); }
.footer-nav a:hover { color: white; }
.footer-copy {
  text-align: center; font-size: 11px;
  color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  background: var(--navy);
  border: 2px solid var(--sky);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
  color: white; font-size: 9px; font-weight: 700;
  z-index: 500; opacity: 0;
  transform: translateY(16px);
  transition: all .3s; pointer-events: none;
  text-decoration: none;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top .arrow { font-size: 16px; }
.back-to-top:hover { background: var(--blue); }

/* ─── PAGE HEADER (inner pages) ─── */
.page-hero {
  padding-top: 64px;
  background: linear-gradient(135deg, #06101f 0%, #0e2a5e 100%);
  padding-bottom: 72px;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 56px 24px 0;
}
.page-hero .en-label {
  font-size: 10px; font-weight: 700; letter-spacing: .3em;
  color: var(--sky); display: block; margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: white;
}
.page-hero .page-desc {
  margin-top: 16px; font-size: 14px;
  color: rgba(255,255,255,.8); line-height: 2;
  max-width: 600px;
}

/* breadcrumb */
.breadcrumb {
  max-width: 1100px; margin: 0 auto;
  padding: 16px 24px;
  font-size: 12px; color: var(--gray);
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--gray); }

/* ─── SERVICE DETAIL PAGE ─── */
.section-service-detail { padding: 72px 0; background: white; }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.service-detail-img {
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg,#1a1f2e,#0e1520);
  display: flex; align-items: center; justify-content: center;
}
.service-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-detail-img .img-placeholder {
  color: rgba(255,255,255,.3); font-size: 13px; text-align: center;
  border: 1px dashed rgba(255,255,255,.2); padding: 24px;
}
.service-detail-text h2 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.service-detail-text p  { font-size: 14px; color: var(--text); line-height: 2; margin-bottom: 16px; }
.service-detail-text ul { list-style: none; }
.service-detail-text ul li {
  display: flex; gap: 8px; align-items: baseline;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid var(--light); color: var(--text);
}
.service-detail-text ul li::before {
  content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0;
}

/* ─── CONTACT PAGE ─── */
.section-contact-form { padding: 72px 0; background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.contact-info h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info p { font-size: 13px; color: var(--gray); line-height: 2; }
.contact-info .tel-big { font-size: 24px; font-weight: 900; color: var(--navy); margin: 16px 0 4px; }
.contact-info .tel-big a { color: var(--navy); }
.contact-info .hours { font-size: 12px; color: var(--gray); }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-group label .req {
  display: inline-block; padding: 2px 6px;
  background: var(--blue); color: white;
  font-size: 10px; margin-left: 6px; vertical-align: middle;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid #d1d5db; border-radius: 2px;
  font-size: 14px; font-family: inherit;
  color: var(--text); background: white;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,95,168,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: block; width: 100%; padding: 16px;
  background: var(--navy); color: white;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: var(--blue); }

/* ─── COMPANY PAGE ─── */
.section-company { padding: 72px 0; background: white; }
.company-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.company-table th {
  width: 180px; padding: 14px 20px;
  background: var(--mist); color: var(--navy);
  font-weight: 700; text-align: left;
  border-bottom: 1px solid #dde8f5;
  white-space: nowrap;
}
.company-table td {
  padding: 14px 20px; color: var(--text);
  border-bottom: 1px solid #eee;
}
.section-map { padding: 72px 0; background: var(--light); }
.map-placeholder {
  height: 320px; background: #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 14px;
}

/* ─── WORKS PAGE ─── */
.section-works-list { padding: 72px 0; background: white; }
.works-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 6px 20px; border: 1px solid #d1d5db;
  background: white; color: var(--gray);
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.works-grid-full {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── SUBSIDY PAGE ─── */
.section-subsidy { padding: 72px 0; background: white; }
.subsidy-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.subsidy-card {
  padding: 32px 28px;
  border: 1px solid var(--mist);
  border-top: 4px solid var(--blue);
  border-radius: 2px;
}
.subsidy-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.subsidy-card p  { font-size: 13px; color: var(--gray); line-height: 1.9; }
.subsidy-card .amount { font-size: 20px; font-weight: 900; color: var(--blue); margin: 12px 0; }
.subsidy-note { background: var(--mist); padding: 24px 28px; border-radius: 2px; font-size: 13px; color: var(--gray); line-height: 2; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .worries-grid  { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid  { grid-template-columns: repeat(2, 1fr); }
  .works-grid, .works-grid-full { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .subsidy-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero-text { font-size: 13px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .service-block { min-height: 52vh; }
  .flow-steps { flex-wrap: wrap; gap: 16px; }
  .flow-item { width: calc(33% - 12px); min-width: 90px; }
  .flow-item::after { display: none; }
  .works-grid, .works-grid-full { grid-template-columns: 1fr; }
  .footer-nav a { width: 50%; }
  .cta-tel { font-size: 28px; }
  .company-table th { width: 120px; }
}
@media (max-width: 480px) {
  .worries-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .footer-nav a { width: 100%; }
  .hero-btns a { width: 100%; text-align: center; }
  .flow-item { width: calc(50% - 8px); }
}

/* ─── DEMOLITION CONSULTATION WIZARD ─── */
.section-form-wizard { padding: 72px 0; background: var(--light); }
.wizard-box { max-width: 640px; margin: 0 auto; background: white; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.wizard-banner { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 28px 24px; text-align: center; }
.wizard-banner p { color: white; font-size: 16px; font-weight: 900; margin-bottom: 12px; }
.wizard-banner-tags { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.wizard-banner-tags span { background: white; color: #ea580c; font-size: 13px; font-weight: 900; padding: 6px 16px; border-radius: 4px; }
.wizard-banner-tags { color: white; font-size: 13px; font-weight: 700; }
.wizard-progress { display: flex; align-items: center; gap: 12px; background: var(--mist); padding: 14px 24px; }
.wizard-progress-bar { flex: 1; height: 6px; background: #dbe6f0; border-radius: 4px; overflow: hidden; }
.wizard-progress-fill { height: 100%; width: 7.14%; background: var(--blue); border-radius: 4px; transition: width .3s; }
.wizard-progress-label { font-size: 12px; font-weight: 700; color: var(--gray); white-space: nowrap; }
.wizard-body { padding: 32px 28px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-q { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 20px; }
.wizard-list { display: flex; flex-direction: column; gap: 10px; }
.wizard-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.wizard-choice {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 14px 18px; text-align: left;
  border: 2px solid #e5e7eb; border-radius: 6px; background: white;
  font-family: inherit; font-size: 14px; font-weight: 700; color: var(--text);
  cursor: pointer; transition: all .2s;
}
.wizard-choice:hover { border-color: var(--sky); }
.wizard-choice.selected { border-color: var(--blue); background: var(--mist); }
.wizard-choice .dot { flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; border: 2px solid #d1d5db; }
.wizard-choice.selected .dot { border-color: var(--blue); background: var(--blue); }
.wizard-grid-2 .wizard-choice { flex-direction: column; text-align: center; padding: 18px 10px; }
.wizard-grid-2 .wizard-choice .icon { font-size: 28px; }
.wizard-back { display: inline-block; margin-top: 24px; background: none; border: none; font-family: inherit; font-size: 12px; font-weight: 700; color: var(--gray); cursor: pointer; }
.wizard-back:hover { text-decoration: underline; }
.wizard-company-input { margin-top: 16px; }
.wizard-next-btn {
  margin-top: 16px; width: 100%; padding: 12px; border: none; border-radius: 999px;
  background: var(--blue); color: white; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
}
.wizard-next-btn:hover { background: var(--navy); }
.wizard-final-actions { display: flex; gap: 12px; margin-top: 8px; }
.wizard-final-actions .form-submit { flex: 1; margin-top: 0; }
.wizard-btn-prev {
  padding: 0 24px; border: 2px solid #d1d5db; border-radius: 999px; background: white;
  color: var(--gray); font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
}
.wizard-footnote { text-align: center; font-size: 12px; color: var(--gray); padding: 0 28px 28px; }
.wizard-note { font-size: 12px; color: var(--gray); line-height: 1.9; margin-top: 16px; }
.wizard-done { padding: 48px 28px; text-align: center; }
.wizard-done p:first-child { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.wizard-done p { font-size: 13px; color: var(--gray); line-height: 1.9; }
@media (max-width: 480px) {
  .wizard-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .wizard-body { padding: 24px 20px; }
}
