/* ========== Design System ========== */
    :root {
      --navy: #0a0f1e;
      --navy-mid: #141b2d;
      --navy-light: #1e2a3f;
      --gold: #b8924a;
      --gold-light: #d4b978;
      --gold-muted: rgba(184,146,74,0.12);
      --text-primary: #1a1a1a;
      --text-secondary: #4a4a4a;
      --text-muted: #777;
      --text-light: #999;
      --bg-page: #f8f7f5;
      --bg-warm: #f5f3ef;
      --bg-card: #ffffff;
      --border-light: #e8e5e0;
      --border-subtle: #f0ede8;
      --header-h: 72px;
      --max-width: 1080px;
      --font-serif: "Noto Serif KR", "Batang", serif;
      --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ========== Base ========== */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; overflow-x: hidden; }
    body {
      padding-top: var(--header-h);
      font-family: var(--font-sans);
      color: var(--text-primary);
      background: var(--bg-page);
      line-height: 1.7;
      font-size: 16px;
    }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    ul, li { list-style: none; padding: 0; margin: 0; }
    button { cursor: pointer; border: none; font-family: inherit; }
    img { max-width: 100%; display: block; }

    /* ========== Header ========== */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--header-h);
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      box-shadow: 0 2px 12px rgba(10,15,30,0.06);
    }
    .header-inner {
      max-width: var(--max-width); margin: 0 auto; height: 100%;
      padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
    }
    .logo-area { display: flex; align-items: center; gap: 10px; }
    .logo-img { height: 34px; width: auto; }
    .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
    .logo-main {
      font-family: var(--font-serif); font-size: 18px; font-weight: 700;
      color: var(--navy); letter-spacing: -0.02em;
    }
    .logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
    .gnb { display: flex; align-items: center; gap: 24px; height: 100%; }
    .nav-list { display: flex; gap: 4px; height: 100%; }
    .nav-item { position: relative; height: 100%; display: flex; align-items: center; }
    .nav-link {
      display: inline-flex; align-items: center;
      height: 38px; padding: 0 12px;
      font-size: 14px; font-weight: 700;
      color: var(--text-secondary); border-radius: 6px;
    }
    .nav-link:hover, .nav-link.active { background: var(--gold-muted); color: var(--navy); }
    .sub-menu {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: var(--bg-card); min-width: 160px;
      border: 1px solid var(--border-light);
      box-shadow: 0 12px 32px rgba(10,15,30,0.12);
      opacity: 0; visibility: hidden; transition: all 0.2s ease; padding: 6px;
    }
    .nav-item:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .sub-menu a { display: block; padding: 9px 12px; font-size: 13px; font-weight: 700; color: var(--text-secondary); }
    .sub-menu a:hover { background: var(--bg-warm); color: var(--navy); }
    .nav-cta { height: 40px; padding: 0 18px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; }
    .nav-cta:hover { background: var(--navy-mid); }
    .menu-toggle {
      display: none; width: 24px; height: 18px;
      position: relative; z-index: 1100; background: none; padding: 0;
    }
    .menu-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); position: absolute; left: 0; transition: 0.3s; }
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .menu-toggle span:nth-child(3) { bottom: 0; }
    .menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-45deg); }

    /* ========== Hero ========== */
    .hero-area {
      background: var(--navy);
      color: #fff;
      padding: 64px 24px 72px;
      text-align: center;
    }
    .hero-kicker {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 700;
      margin-bottom: 14px;
    }
    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(26px, 3.8vw, 42px);
      font-weight: 700;
      line-height: 1.28;
      letter-spacing: -0.02em;
      margin: 0 0 14px;
      color: #fff;
    }
    .hero-line {
      width: 32px; height: 2px;
      background: var(--gold);
      margin: 0 auto 16px;
    }
    .hero-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      max-width: 560px;
      margin: 0 auto;
      word-break: keep-all;
      line-height: 1.8;
    }

    /* ========== Main card ========== */
    .sc-container {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 24px 80px;
    }
    .main-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      margin-top: 40px;
      padding: 40px;
      border-radius: var(--radius-lg);
    }

    /* ========== Mode tabs ========== */
    .mode-tabs {
      display: flex;
      border-bottom: 2px solid var(--border-light);
      margin-bottom: 40px;
    }
    .mode-btn {
      flex: 1;
      padding: 14px 12px;
      background: transparent;
      border: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-family: var(--font-sans);
    }
    .mode-btn.active {
      color: var(--navy);
      border-bottom-color: var(--gold);
    }
    .mode-btn:hover { color: var(--navy); }
    .mode-btn i { font-size: 14px; }

    /* ========== Question wizard ========== */
    .question-progress {
      margin: 0 0 28px;
      padding: 18px 20px;
      background: linear-gradient(180deg, rgba(184,146,74,0.08), rgba(255,255,255,0.98));
      border: 1px solid var(--border-light);
    }
    .wizard-progress-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }
    .wizard-progress-label {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
    }
    .wizard-progress-step {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .wizard-progress-track {
      width: 100%;
      height: 8px;
      background: var(--border-subtle);
      overflow: hidden;
    }
    .wizard-progress-bar {
      display: block;
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transition: width 0.24s ease;
    }
    .wizard-progress-note {
      margin-top: 10px;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .question-wizard-ready .q-section {
      display: none;
      margin-bottom: 0;
    }
    .question-wizard-ready .q-section.is-active { display: block; }
    .question-wizard-ready .q-item {
      display: none;
      margin-bottom: 0;
    }
    .question-wizard-ready .q-item.is-active {
      display: block;
      outline: none;
    }
    .question-wizard-ready .info-section,
    .question-wizard-ready .submit-area,
    .question-wizard-ready .wizard-complete-note {
      display: none;
    }
    .question-wizard-ready.is-contact-step .info-section,
    .question-wizard-ready.is-contact-step .submit-area,
    .question-wizard-ready.is-contact-step .wizard-complete-note {
      display: block;
    }
    .wizard-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 28px;
    }
    .wizard-btn {
      min-width: 148px;
      padding: 14px 20px;
      font-size: 15px;
      font-weight: 700;
      font-family: var(--font-sans);
      border: none;
      transition: var(--transition);
    }
    .wizard-btn:hover:not(:disabled) { background: var(--navy-mid); }
    .wizard-btn:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }
    .wizard-btn.secondary {
      background: transparent;
      color: var(--navy);
      border: 1px solid var(--border-light);
    }
    .wizard-btn.secondary:hover:not(:disabled) {
      background: var(--gold-muted);
      border-color: var(--gold);
    }
    .wizard-complete-note {
      background: var(--bg-warm);
      border-left: 3px solid var(--gold);
      padding: 16px 18px;
      margin-top: 32px;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    /* ========== Question group ========== */
    .q-section {
      margin-bottom: 48px;
      animation: fadeIn 0.4s ease-out;
    }
    @keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

    .q-header {
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border-subtle);
    }
    .q-step {
      display: block;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 5px;
    }
    .q-title-lg {
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin: 0;
      letter-spacing: -0.02em;
    }
    .q-desc-box {
      background: var(--bg-warm);
      border-left: 3px solid var(--gold);
      padding: 14px 18px;
      margin-bottom: 24px;
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.75;
    }
    .diagram-container {
      margin: 16px 0 24px;
      padding: 16px 18px;
      background: var(--bg-page);
      border: 1px solid var(--border-light);
      border-left: 3px solid var(--border-light);
    }
    .diagram-caption {
      font-size: 13px;
      color: var(--text-muted);
      font-style: italic;
      line-height: 1.65;
    }

    /* ========== Select cards ========== */
    .q-item { margin-bottom: 32px; }
    .q-label {
      display: block;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 14px;
      line-height: 1.5;
    }
    .select-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .select-full { grid-template-columns: 1fr; }

    .select-card {
      position: relative;
      border: 1px solid var(--border-light);
      padding: 14px 16px;
      cursor: pointer;
      transition: var(--transition);
      background: var(--bg-card);
      border-radius: var(--radius-lg);
    }
    .select-card:hover { border-color: var(--gold); background: var(--bg-page); }
    .select-card input { position: absolute; opacity: 0; width: 0; height: 0; }
    .select-content { display: flex; align-items: center; gap: 12px; }
    .select-icon {
      width: 20px; height: 20px;
      border: 2px solid var(--border-light);
      flex-shrink: 0; position: relative;
      border-radius: var(--radius-sm);
    }
    .select-text { font-size: 14px; font-weight: 500; color: var(--text-secondary); line-height: 1.5; }

    /* Checked state */
    .select-card:has(input:checked) {
      border-color: var(--gold);
      background: var(--gold-muted);
    }
    .select-card:has(input:checked) .select-icon {
      border-color: var(--gold);
      background: var(--gold);
    }
    .select-card:has(input:checked) .select-icon::after {
      content: '';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 7px; height: 7px;
      background: #fff;
    }
    .select-card:has(input:checked) .select-text {
      color: var(--navy);
      font-weight: 700;
    }

    /* ========== Info section ========== */
    .info-section {
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      padding: 28px;
      margin-top: 36px;
      border-radius: var(--radius-lg);
    }
    .info-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .info-title i { color: var(--gold); }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      margin-bottom: 14px;
    }
    .form-input {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid var(--border-light);
      background: var(--bg-card);
      font-size: 15px;
      font-family: var(--font-sans);
      outline: none;
      transition: var(--transition);
      border-radius: var(--radius-md);
    }
    .form-input:focus { border-color: var(--gold); }
    .privacy-check {
      font-size: 13px;
      color: var(--text-secondary);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      cursor: pointer;
      line-height: 1.5;
    }
    .privacy-check input { margin-top: 2px; flex-shrink: 0; }
    .privacy-detail {
      margin-top: 10px;
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(0,0,0,0.03);
      border: 1px solid var(--border-subtle);
      padding: 10px 12px;
      line-height: 1.7;
      border-radius: var(--radius-md);
    }

    /* ========== Submit button ========== */
    .submit-area { text-align: center; margin-top: 36px; }
    .btn-submit-main {
      background: var(--navy);
      color: #fff;
      padding: 16px 52px;
      font-size: 16px;
      font-weight: 700;
      font-family: var(--font-sans);
      border: none;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: var(--radius-md);
    }
    .btn-submit-main:hover { background: var(--navy-mid); }

    /* ========== Result modal ========== */
    .report-overlay {
      display: none;
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(10,15,30,0.65);
      backdrop-filter: blur(4px);
      z-index: 999;
    }
    .report-box {
      display: none;
      background: var(--bg-card);
      border-top: 3px solid var(--gold);
      border: 1px solid var(--border-light);
      padding: 40px;
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 90%; max-width: 600px;
      z-index: 1000;
      max-height: 90vh;
      overflow-y: auto;
      text-align: center;
      border-radius: var(--radius-lg);
    }
    .report-badge {
      display: inline-block;
      padding: 5px 12px;
      background: var(--navy);
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
      border-radius: var(--radius-sm);
    }
    .report-title {
      font-family: var(--font-serif);
      font-size: 22px;
      font-weight: 700;
      line-height: 1.4;
      margin: 0 0 20px;
      color: var(--navy);
    }
    .report-content {
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      padding: 20px;
      text-align: left;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 24px;
      border-radius: var(--radius-md);
    }
    .btn-action-group {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .report-sla {
      margin: 14px 0 0;
      padding-top: 14px;
      border-top: 1px dashed var(--border-subtle);
      font-size: 12.5px;
      color: var(--text-muted);
      text-align: center;
      letter-spacing: -0.01em;
    }
    .btn-big {
      padding: 14px;
      font-weight: 700;
      font-size: 15px;
      font-family: var(--font-sans);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: var(--transition);
      border-radius: var(--radius-md);
    }
    .btn-navy { background: var(--navy); color: #fff; }
    .btn-navy:hover { background: var(--navy-mid); }
    .btn-gold { background: var(--gold); color: #fff; }
    .btn-gold:hover { background: var(--gold-light); }
    .btn-close {
      position: absolute; top: 16px; right: 16px;
      font-size: 22px; color: var(--text-light); cursor: pointer;
      background: none; border: none; font-family: inherit;
    }
    .btn-close:hover { color: var(--text-primary); }

    /* ========== Footer ========== */
    .site-footer {
      background: #050a14;
      color: #e5e7eb;
      padding: 56px 24px 34px;
      border-top: 1px solid rgba(255,255,255,0.05);
      font-family: var(--font-sans);
    }
    .footer-inner {
      max-width: var(--max-width); margin: 0 auto;
      display: grid; grid-template-columns: 1.2fr 1fr 1fr;
      gap: 28px; align-items: start;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 12px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; }
    .footer-logo-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
    .footer-logo-text { display: flex; flex-direction: column; gap: 2px; }
    .footer-logo-main {
      font-family: var(--font-serif); font-size: 17px; font-weight: 700;
      color: #f0ede8; letter-spacing: -0.02em;
    }
    .footer-logo-sub { font-size: 11px; color: #9ca3af; letter-spacing: 0.06em; }
    .footer-desc { font-size: 13px; line-height: 1.75; color: #9ca3af; }
    .footer-contact { font-size: 13px; line-height: 1.85; color: #d1d5db; }
    .footer-contact .label { color: var(--gold); font-weight: 700; margin-right: 6px; }
    .footer-col h4 { font-size: 14px; font-weight: 700; margin: 0 0 12px; color: #f8f8f6; }
    .footer-links { display: grid; gap: 7px; font-size: 13px; }
    .footer-links a { color: #d1d5db; opacity: 0.85; }
    .footer-links a:hover { color: var(--gold-light); opacity: 1; }
    .footer-quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
    .footer-quick a {
      display: flex; align-items: center; gap: 7px;
      padding: 8px 10px; background: rgba(255,255,255,0.04);
      color: #d1d5db; font-size: 12px; font-weight: 700;
    }
    .footer-quick a:hover { background: rgba(184,146,74,0.1); color: var(--gold-light); }
    .footer-line { max-width: var(--max-width); margin: 26px auto 16px; height: 1px; background: rgba(255,255,255,0.07); }
    .footer-notice { max-width: var(--max-width); margin: 0 auto; font-size: 12px; line-height: 1.8; color: #6b7280; }
    .footer-bottom {
      max-width: var(--max-width); margin: 14px auto 0;
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: space-between; align-items: center;
      font-size: 12px; color: #6b7280;
    }

    /* ========== Desktop right CTA ========== */
    .desktop-right-cta { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 9998; display: none; }
    .desktop-right-cta-stack { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
    .desktop-right-cta-btn {
      display: flex; align-items: center; gap: 12px; padding: 12px 14px;
      background: rgba(10,15,30,0.93); color: #f0ede8;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      transition: var(--transition); min-width: 164px; backdrop-filter: blur(10px);
    }
    .desktop-right-cta-btn.primary { background: var(--gold); color: var(--navy); border-color: transparent; }
    .desktop-right-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
    .desktop-right-cta-btn i { font-size: 17px; width: 20px; text-align: center; }
    .desktop-right-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .desktop-right-cta-text .main { font-weight: 800; font-size: 13px; line-height: 1.1; white-space: nowrap; }
    .desktop-right-cta-text .sub { font-weight: 600; font-size: 11px; opacity: 0.75; white-space: nowrap; }
    .desktop-right-cta-text .sub.mono { font-feature-settings: "tnum"; letter-spacing: 0.02em; }
    .desktop-right-cta-details { position: relative; }
    .desktop-right-cta-details > summary { list-style: none; }
    .desktop-right-cta-details > summary::-webkit-details-marker { display: none; }
    .desktop-right-cta-arrow { margin-left: auto; font-size: 12px; opacity: 0.7; transition: transform 0.2s ease; }
    .desktop-right-cta-details[open] .desktop-right-cta-arrow { transform: rotate(180deg); }
    .desktop-right-cta-dropdown {
      position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
      width: 220px; background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      box-shadow: 0 16px 48px rgba(10,15,30,0.2); overflow: hidden; padding: 6px;
    }
    .desktop-right-cta-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 11px; font-weight: 700; font-size: 13px; color: var(--navy); }
    .desktop-right-cta-dropdown a:hover { background: var(--bg-warm); }
    .desktop-right-cta-chip {
      width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
      background: var(--navy); color: var(--gold-light); font-size: 11px; font-weight: 800; flex-shrink: 0;
      border-radius: var(--radius-sm);
    }

    /* ========== Media queries ========== */
    @media (min-width: 993px) {
      .desktop-right-cta { display: block; }
    }
    @media (max-width: 992px) {
      .gnb {
        position: fixed; top: 72px; right: -100%;
        width: min(100%, 360px); height: calc(100vh - 72px);
        background: var(--bg-card); flex-direction: column;
        padding: 20px 0 40px; overflow-y: auto;
        border-left: 1px solid var(--border-light);
        box-shadow: -4px 0 20px rgba(0,0,0,0.08);
        transition: right 0.3s ease; z-index: 1000; align-items: flex-start; gap: 0;
      }
      .gnb.open { right: 0; }
      .nav-list { flex-direction: column; width: 100%; height: auto; gap: 0; }
      .nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border-subtle); }
      .nav-link { width: 100%; height: auto; padding: 15px 24px; font-size: 16px; border-radius: var(--radius-md); }
      .sub-menu { position: static; width: 100%; box-shadow: none; border: none; border-top: 1px solid var(--border-subtle); background: var(--bg-warm); opacity: 1; visibility: visible; transform: none; padding: 6px; display: none; }
      .nav-item.active .sub-menu { display: block; }
      .sub-menu a { padding: 11px 32px; font-size: 14px; }
      .nav-cta { margin: 24px auto; width: calc(100% - 48px); text-align: center; height: 46px; justify-content: center; display: flex; }
      .menu-toggle { display: flex; align-items: center; }
      body { overflow-x: hidden; }
      .wizard-progress-note { font-size: 14px; }
      .select-text { font-size: 15px; line-height: 1.6; }
      .form-input { font-size: 16px; padding: 13px 14px; }
      .privacy-check { font-size: 14px; }
      .privacy-detail { font-size: 13px; }
    }
    @media (max-width: 768px) {
      .main-card { padding: 24px 18px; margin-top: 24px; }
      .select-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .btn-action-group { grid-template-columns: 1fr; }
      .report-box { padding: 28px 20px; }
      .question-progress { padding: 16px; }
      .wizard-controls {
        flex-direction: column-reverse;
        align-items: stretch;
      }
      .wizard-btn { width: 100%; }
    }
    @media (max-width: 640px) {
      body { font-size: 16px; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-quick { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .site-footer { padding: 40px 16px 28px; }
    }
    @media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
    @media (prefers-reduced-motion: reduce) {
      .desktop-right-cta-btn, .desktop-right-cta-arrow { transition: none !important; }
    }
