html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-primary);
  background: #fff;
  overflow-x: hidden;
  --ok: #0a7a6a;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy-dark) 48%, var(--navy-mid) 78%, var(--navy) 100%);
  position: relative;
  padding: 80px 40px 72px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: 220px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(200,160,32,.1);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(200,160,32,.2) 100%);
}
.hero-bg-text {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 11vw, 90px); font-weight: 300;
  color: rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: 0.1em;
}
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 16px; text-transform: uppercase;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 12px;
}
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }

/* ========== TYPE SELECT ========== */
.type-select-section {
  background: var(--off-white);
  border-bottom: 1px solid rgba(7,9,80,0.08);
  padding: 40px 40px 0;
}
.type-select-inner { max-width: 1280px; margin: 0 auto; }
.type-select-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--text-muted); text-transform: uppercase; margin-bottom: 16px;
}
.type-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.type-card {
  background: #fff;
  border: 2px solid rgba(7,9,80,0.1);
  border-radius: 8px;
  padding: 20px 20px 18px;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.type-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,9,80,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.type-card:hover { border-color: var(--navy-link); transform: translateY(-2px); }
.type-card:hover::after { opacity: 1; }
.type-card.selected {
  border-color: var(--navy-link);
  box-shadow: 0 0 0 3px rgba(7,9,80,0.12);
}
.type-card.selected::after { opacity: 1; }
.type-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 12px;
}
.type-card:nth-child(1) .type-card-icon { background: rgba(7,9,80,0.08); }
.type-card:nth-child(2) .type-card-icon { background: rgba(200,160,32,0.12); }
.type-card:nth-child(3) .type-card-icon { background: rgba(10,122,106,0.1); }
.type-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 6px;
}
.type-card-desc { font-size: 11px; color: var(--text-muted); line-height: 1.7; }
.type-card-check {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px;
  border: 2px solid rgba(7,9,80,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.type-card.selected .type-card-check {
  background: var(--navy);
  border-color: var(--navy-link);
}
.type-card.selected .type-card-check::after {
  content: '';
  width: 6px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

/* ========== MAIN LAYOUT ========== */
.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* ========== FORM ========== */
.form-section { min-width: 0; }

.form-step-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.form-step {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-muted); text-transform: uppercase;
}
.form-step.active { color: var(--navy-link); }
.form-step.done { color: var(--ok); }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid rgba(7,9,80,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  flex-shrink: 0; transition: all .3s;
}
.form-step.active .step-num { background: var(--navy); border-color: var(--navy-link); color: #fff; }
.form-step.done .step-num { background: var(--ok); border-color: var(--ok); color: #fff; font-size: 0; }
.form-step.done .step-num::after { content: '✓'; font-size: 12px; line-height: 1; }
.form-step.done .step-label { display: none; }
.step-connector {
  flex: 1; height: 1px;
  background: rgba(7,9,80,0.1);
  margin: 0 12px;
}

/* フォームグループ */
.form-group {
  margin-bottom: 28px;
  position: relative;
}
.form-group.half {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-label {
  display: block;
  font-size: 12px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em;
}
.req-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  background: var(--navy); color: #fff;
  padding: 2px 6px; border-radius: 2px; letter-spacing: 0.1em;
}
.opt-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  background: var(--off-white); color: var(--text-muted);
  padding: 2px 6px; border-radius: 2px; letter-spacing: 0.1em;
  border: 1px solid rgba(7,9,80,0.1);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(7,9,80,0.12);
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input, .form-select { padding: 13px 16px; height: 48px; }
.form-textarea { padding: 14px 16px; resize: vertical; min-height: 160px; line-height: 1.8; }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy-link);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(7,9,80,0.08);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--err);
  background: rgba(217,79,79,0.03);
}
.form-input.error:focus, .form-select.error:focus, .form-textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(217,79,79,0.1);
}

.err-msg {
  font-size: 11px; color: var(--err);
  margin-top: 6px; display: none;
  align-items: center; gap: 4px;
}
.err-msg.show { display: flex; }
.err-msg::before { content: '⚠'; font-size: 12px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ab8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* チェックボックス */
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-row {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
}
.checkbox-row input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid rgba(7,9,80,0.2); border-radius: 4px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; margin-top: 1px;
}
.checkbox-row input:checked + .checkbox-custom {
  background: var(--navy); border-color: var(--navy-link);
}
.checkbox-row input:checked + .checkbox-custom::after {
  content: '';
  width: 5px; height: 9px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-1px); display: block;
}
.checkbox-label { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ラジオボタン */
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--off-white);
  border: 1.5px solid rgba(7,9,80,0.12);
  border-radius: 6px;
  padding: 10px 16px;
  transition: border-color .2s, background .2s;
}
.radio-row:hover { border-color: var(--navy-link); }
.radio-row input[type="radio"] { display: none; }
.radio-row.checked { border-color: var(--navy-link); background: rgba(7,9,80,0.04); }
.radio-custom {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid rgba(7,9,80,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.radio-row.checked .radio-custom { border-color: var(--navy-link); }
.radio-row.checked .radio-custom::after {
  content: ''; width: 8px; height: 8px;
  background: var(--navy); border-radius: 50%; display: block;
}
.radio-label { font-size: 13px; color: var(--text-secondary); }

/* プライバシー同意 */
.privacy-agree {
  background: var(--off-white);
  border: 1.5px solid rgba(7,9,80,0.1);
  border-radius: 8px;
  padding: 20px 20px 20px 20px;
  margin-bottom: 32px;
}
.privacy-text {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.9; margin-bottom: 14px;
}
.privacy-text a { color: var(--navy-link); text-decoration: underline; }
.privacy-agree .checkbox-label { font-size: 13px; font-weight: 700; color: var(--text-primary); }

/* セクション区切り */
.form-section-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 36px 0 28px;
}
.form-section-divider-line { flex: 1; height: 1px; background: rgba(7,9,80,0.08); }
.form-section-divider-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--text-muted); text-transform: uppercase; white-space: nowrap;
}

/* 送信ボタン */
.submit-area { text-align: center; }
.submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; font-weight: 700;
  padding: 18px 56px;
  border-radius: 6px;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  letter-spacing: 0.06em;
  position: relative; overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.submit-btn:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(7,9,80,0.3); }
.submit-btn:active { transform: translateY(0); }
.submit-btn-arrow { transition: transform .2s; }
.submit-btn:hover .submit-btn-arrow { transform: translateX(4px); }
.submit-note { font-size: 11px; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ========== CONFIRM ========== */
#confirmPanel[hidden],
#contactForm[hidden],
#typeSelectSection[hidden] { display: none; }
.confirm-lead {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}
.confirm-list {
  border: 1px solid rgba(7,9,80,0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}
.confirm-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(7,9,80,0.08);
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row:nth-child(odd) { background: var(--off-white); }
.confirm-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.confirm-value {
  font-size: 14px;
  color: var(--text-primary);
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.7;
}
.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.back-edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 16px 28px;
  border: 2px solid var(--navy);
  border-radius: 6px;
  background: #fff;
  color: var(--navy-link);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.back-edit-btn:hover { background: var(--off-white); }

.thanks-wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 40px 100px;
}
.form-server-error {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid #c0392b;
  background: #fdecea;
  color: #8b1e16;
  font-size: 13px;
  line-height: 1.7;
}
.form-server-error[hidden] { display: none; }

/* ========== SUCCESS MESSAGE ========== */
#successMsg {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
#successMsg.show { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}
.success-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px;
}
.success-body {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.9; margin-bottom: 32px;
}
.success-home-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none; transition: background .2s;
}
.success-home-btn:hover { background: var(--gold-light); }

/* ========== SIDEBAR ========== */
.contact-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex; flex-direction: column; gap: 24px;
}

.sidebar-card {
  background: var(--off-white);
  border-radius: 10px; overflow: hidden;
}
.sidebar-card-header {
  background: var(--navy-deep);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.sidebar-card-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.sidebar-card-body { padding: 22px 20px; }

/* 対応フロー */
.flow-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.flow-item {
  display: flex; gap: 14px;
  padding-bottom: 20px;
  position: relative;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px; top: 30px; bottom: 0;
  width: 2px; background: rgba(7,9,80,0.08);
}
.flow-num {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.flow-body {}
.flow-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; line-height: 1.4; }
.flow-desc { font-size: 11px; color: var(--text-muted); line-height: 1.6; }

/* 連絡先 */
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; flex-direction: column; gap: 4px; }
.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--text-muted); text-transform: uppercase;
}
.contact-info-value { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.contact-info-sub { font-size: 11px; color: var(--text-muted); }

/* アクセス */
.access-map {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  border-radius: 8px;
  height: 120px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.access-map::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 12px,
    rgba(255,255,255,0.03) 12px, rgba(255,255,255,0.03) 13px
  );
}
.access-map-pin {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.access-map-pin-icon {
  width: 36px; height: 36px;
  background: var(--gold); border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(200,160,32,0.4);
}
.access-map-pin-icon::after {
  content: '';
  width: 16px; height: 16px;
  background: #fff; border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.access-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.access-info { font-size: 12px; color: var(--text-secondary); line-height: 1.7; }

/* ========== FAQ SECTION ========== */
.faq-section {
  background: var(--off-white);
  padding: 64px 40px;
  border-top: 1px solid rgba(7,9,80,0.08);
}
.faq-inner { max-width: 1280px; margin: 0 auto; }
.section-title-sm {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.section-title-sm::before {
  content: '';
  width: 4px; height: 22px;
  background: var(--gold); border-radius: 2px; flex-shrink: 0;
}
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(7,9,80,0.08);
  border-radius: 8px; overflow: hidden;
}
.faq-q {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; cursor: pointer;
  transition: background .2s;
  list-style: none;
}
.faq-q:hover { background: rgba(7,9,80,0.02); }
.faq-q-badge {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--navy); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600; color: #fff;
  line-height: 1; margin-top: 1px;
}
.faq-q-text { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.6; flex: 1; }
.faq-arrow {
  font-size: 12px; color: var(--text-muted);
  transition: transform .3s; flex-shrink: 0; margin-top: 4px;
}
.faq-item.open .faq-arrow { transform: rotate(90deg); color: var(--navy-link); }
.faq-a {
  display: none;
  padding: 0 20px 18px 58px;
  font-size: 13px; color: var(--text-secondary); line-height: 1.8;
  border-top: 1px solid rgba(7,9,80,0.06);
}
.faq-item.open .faq-a { display: block; padding-top: 16px; }

/* ========== FOOTER ========== */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 60px 40px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-en { color: #fff; }
.footer-logo .logo-ja { color: rgba(255,255,255,0.4); }
.footer-tagline { font-size: 12px; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 12px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; font-size: 11px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ========== REVEAL ========== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.d1 { transition-delay: .06s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  header { padding: 0 20px; }
  nav { display: none; }
  .breadcrumb { padding: 12px 20px; }
  .hero { padding: 60px 20px 56px; }
  .type-select-section { padding: 32px 20px 0; }
  .type-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; padding: 40px 20px 80px; gap: 48px; }
  .contact-sidebar { position: static; }
  .faq-section { padding: 48px 20px; }
  .faq-grid { grid-template-columns: 1fr; }
  footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .form-group.half { grid-template-columns: 1fr; gap: 28px; }
  .confirm-row { grid-template-columns: 1fr; gap: 6px; }
  .thanks-wrap { padding: 40px 20px 80px; }
}
