.need-hero,
.need-summary,
.decision-section,
.consult-section,
.result-section {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.need-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 34px;
}

.need-hero-copy {
  min-height: 430px;
  padding: clamp(34px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(244, 246, 247, 0.95), rgba(244, 246, 247, 0.68)),
    url("assets/iken-hero-tools-v1.png") center right / cover no-repeat;
}

.need-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.08;
}

.need-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: #3f4e57;
  font-size: 18px;
  line-height: 1.85;
}

.need-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.secondary-need-link,
.need-button,
.result-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}

.need-button,
.result-action {
  padding: 0 18px;
  color: #fff;
  background: var(--red);
}

.need-button:hover,
.result-action:hover {
  background: var(--red-dark);
}

.need-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.secondary-need-link {
  padding: 0 18px;
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.secondary-need-link:hover {
  border-color: #aeb8bd;
}

.need-hero-panel {
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 28px;
  color: #fff;
  border: 1px solid #40515a;
  border-radius: 8px;
  background: #24343d;
}

.need-hero-panel strong {
  color: #e8f0f3;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.22;
  letter-spacing: 0;
}

.need-hero-panel em {
  color: #ffaaa6;
  font-style: normal;
}

.promise-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.promise-list span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #d7e0e4;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 850;
  box-shadow: inset 4px 0 0 rgba(255, 170, 166, 0.72);
}

.need-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 32px;
}

.need-summary article {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 4px 0 var(--red);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.need-summary article:first-child {
  border-left: 1px solid var(--line);
}

.need-summary h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  font-size: 26px;
}

.need-summary h2 span {
  color: var(--red);
  font-size: inherit;
  font-weight: 850;
}

.need-summary p,
.decision-section .section-heading p,
.consult-copy p,
.boundary-box span,
.result-note,
.result-card p,
.result-card li,
.result-card dd {
  color: var(--muted);
  line-height: 1.75;
}

.need-summary p {
  margin: 18px 0 0;
}

.need-summary article > strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--red);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.4;
}

.need-summary article > strong::after {
  content: " ->";
}

.need-summary article:hover,
.need-summary article:focus-visible {
  border-color: #c6d0d6;
  box-shadow:
    inset 0 4px 0 var(--red),
    0 16px 32px rgba(24, 34, 42, 0.08);
  transform: translateY(-2px);
}

.need-summary article:focus-visible {
  outline: 3px solid rgba(189, 48, 44, 0.16);
  outline-offset: 3px;
}

.decision-section,
.consult-section,
.result-section {
  padding-top: 88px;
}

.decision-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.decision-flow li {
  min-height: 190px;
  padding: 26px;
  display: grid;
  gap: 14px;
  align-content: start;
  background: #fff;
}

.decision-flow strong {
  font-size: 20px;
}

.decision-flow span {
  color: var(--muted);
  line-height: 1.7;
}

.consult-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  align-items: start;
}

.consult-copy {
  position: sticky;
  top: 122px;
}

.consult-copy h2 {
  margin: 0;
  font-size: 42px;
}

.quick-contact-box {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #d8dfe3;
  border-radius: 8px;
  background: #fff;
}

.quick-contact-box span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.quick-contact-box button {
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  background: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 850;
}

.quick-contact-box button:hover,
.quick-contact-box button:focus-visible {
  color: #fff;
  background: var(--red);
}

.quick-contact-box button:focus-visible {
  outline: 3px solid rgba(189, 48, 44, 0.16);
  outline-offset: 3px;
}

.quick-contact-box button:disabled {
  cursor: not-allowed;
  color: #7a858b;
  border-color: #c8d0d4;
  background: #eef1f2;
}

.boundary-box {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(24, 34, 42, 0.06);
}

.boundary-box strong {
  color: var(--red);
  font-size: 18px;
}

.boundary-box b {
  margin-right: 8px;
  color: var(--ink);
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(24, 34, 42, 0.06);
}

.submission-hold {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  background: #fff4f1;
}

.submission-hold[hidden] {
  display: none;
}

.submission-hold > div:first-child {
  display: grid;
  gap: 8px;
}

.submission-hold .eyebrow {
  margin: 0;
}

.submission-hold strong {
  color: var(--ink);
  font-size: 22px;
}

.submission-hold span {
  color: #5f4c49;
  line-height: 1.7;
}

.submission-hold-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.submission-hold-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  background: #fff;
  font-weight: 850;
}

.submission-hold-actions a:hover,
.submission-hold-actions a:focus-visible {
  color: #fff;
  background: var(--red);
}

.consult-form.is-submission-paused > * {
  opacity: 0.56;
}

.consult-form :is(input, select, textarea):disabled {
  cursor: not-allowed;
  background: #eef1f2;
}

.consult-form > label,
.risk-field {
  display: grid;
  gap: 10px;
  color: #4d5a63;
}

.consult-form > label > span,
.risk-field legend {
  color: #4d5a63;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 750;
}

.consult-form .full,
.risk-field,
.form-section,
.need-button,
.result-note {
  grid-column: 1 / -1;
}

.form-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
  padding: 22px;
  border: 1px solid #d8dfe3;
  border-radius: 8px;
  background: #fbfcfd;
}

.form-section[hidden] {
  display: none;
}

.form-section-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.form-section-head strong {
  color: var(--red);
  font-size: 19px;
}

.form-section-head span,
.upload-field small {
  color: var(--muted);
  line-height: 1.7;
}

.form-section label {
  display: grid;
  gap: 10px;
}

.form-section label > span {
  color: #52616a;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 750;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fbfcfd;
  font-size: 16px;
  font-weight: 560;
}

.consult-form input[type="file"] {
  height: auto;
  min-height: 52px;
  padding: 13px 14px;
  line-height: 1.4;
}

.consult-form input,
.consult-form select {
  height: 48px;
  min-height: 48px;
  padding: 0 14px;
  line-height: 48px;
}

.consult-form select {
  appearance: auto;
}

.consult-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 13px 14px;
  line-height: 1.65;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: #9aa5ab;
  font-size: 15px;
  font-weight: 500;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(189, 48, 44, 0.1);
}

.risk-field {
  margin: 0;
  padding: 20px 22px 22px;
  border: 1px solid #d8dfe3;
  border-radius: 8px;
}

.risk-field legend {
  padding: 0;
  margin: 0 0 10px;
}

.risk-field {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.risk-field label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: #4d5a63;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.risk-field input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.upload-field {
  padding: 18px;
  border: 1px dashed #b9c5cc;
  border-radius: 8px;
  background: #fbfcfd;
}

.upload-field small strong {
  color: #6e4e4c;
  font-weight: 650;
}

.privacy-consent {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #d8dfe3;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: #f7f9fa;
}

.privacy-consent p {
  margin: 0;
  color: #64717a;
  font-size: 14px;
  line-height: 1.75;
}

.privacy-consent label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #3f4d55;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.privacy-consent input,
.consult-form .privacy-consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 4px 0 0;
  padding: 0;
  accent-color: var(--red);
}

.privacy-consent a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-consent a:hover,
.privacy-consent a:focus-visible {
  color: var(--red-dark);
}

.result-note {
  margin: 0;
  font-size: 14px;
}

.result-section {
  padding-bottom: 104px;
}

.privacy-main {
  width: min(1180px, calc(100% - 64px));
  margin: 38px auto 96px;
  background: #fff;
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.privacy-hero {
  padding: clamp(38px, 6vw, 72px);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.15;
}

.privacy-hero > p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.privacy-updated {
  display: inline-block;
  margin-top: 22px;
  color: #6d787f;
  font-size: 13px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.privacy-index {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  background: #f8fafb;
}

.privacy-index strong {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 14px;
}

.privacy-index a {
  display: block;
  padding: 9px 0;
  color: #52616a;
  font-size: 14px;
  font-weight: 650;
}

.privacy-index a:hover,
.privacy-index a:focus-visible {
  color: var(--red);
}

.privacy-content {
  padding: 8px clamp(28px, 5vw, 68px) 54px;
}

.privacy-section {
  scroll-margin-top: 112px;
  padding: 38px 0;
}

.privacy-section + .privacy-section {
  border-top: 1px solid var(--line);
}

.privacy-section h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.privacy-section p,
.privacy-section li {
  color: #56656e;
  font-size: 16px;
  line-height: 1.85;
}

.privacy-section p {
  margin: 0;
}

.privacy-section p + p {
  margin-top: 14px;
}

.privacy-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.privacy-section a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-return {
  display: inline-flex;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff !important;
  background: var(--red);
  font-weight: 800;
  text-decoration: none !important;
}

.privacy-return:hover,
.privacy-return:focus-visible {
  background: var(--red-dark);
}

.result-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(24, 34, 42, 0.06);
}

.result-card.is-customer {
  border-top: 4px solid var(--green);
}

.result-card.is-manual {
  border-top: 4px solid var(--red);
}

.result-card h2 {
  margin: 0;
  font-size: 32px;
}

.result-card h3 {
  margin: 24px 0 8px;
  font-size: 20px;
}

.result-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.result-card dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  margin: 18px 0 0;
}

.result-card dt {
  color: var(--ink);
  font-weight: 850;
}

.result-card dd {
  margin: 0;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .need-hero,
  .consult-section {
    grid-template-columns: 1fr;
  }

  .consult-copy {
    position: static;
  }

  .decision-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .need-hero,
  .need-summary,
  .decision-section,
  .consult-section,
  .result-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .need-hero {
    padding-top: 0;
  }

  .need-hero-copy {
    min-height: 420px;
    margin-right: -18px;
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .need-hero h1 {
    font-size: 42px;
  }

  .need-hero p {
    font-size: 16px;
  }

  .need-summary,
  .decision-flow,
  .consult-form,
  .form-section {
    grid-template-columns: 1fr;
  }

  .need-summary article {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .decision-section,
  .consult-section,
  .result-section {
    padding-top: 56px;
  }

  .consult-copy h2 {
    font-size: 32px;
  }

  .consult-form {
    padding: 20px;
  }

  .submission-hold {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .submission-hold-actions {
    justify-content: flex-start;
  }

  .risk-field {
    grid-template-columns: 1fr;
  }

  .privacy-main {
    width: 100%;
    margin-top: 0;
  }

  .privacy-hero {
    padding: 42px 20px;
    border-right: 0;
    border-left: 0;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .privacy-index {
    display: none;
  }

  .privacy-content {
    padding: 4px 20px 40px;
  }

  .result-card dl {
    grid-template-columns: 1fr;
  }
}
