:root {
  --blue: #004a98;
  --blue-2: #0069bf;
  --blue-3: #0097d7;
  --ink: #10213d;
  --muted: #5c6f86;
  --line: #d8e3ef;
  --soft: #f3f8fc;
  --white: #fff;
  --gold: #f58220;
  --orange: #f58220;
  --green: #28a745;
  --sky: #00a6df;
  font-family: "M PLUS Rounded 1c", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  height: 82px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #dce6f4;
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-inner,
.hero-inner,
.feature-inner,
.search-panel,
.consult-panel,
.content-section,
.guide-cards,
.newsletter,
.footer-inner {
  width: min(1200px, calc(100vw - 64px));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--blue);
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 270px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
  white-space: nowrap;
}

.global-nav a {
  color: #10213d;
  font-weight: 700;
  font-size: 14px;
  padding: 30px 0 25px;
  border-bottom: 3px solid transparent;
}

.global-nav a.active {
  color: var(--blue);
  border-color: var(--orange);
}

.contact-button {
  min-width: 122px;
  height: 42px;
  border: 1px solid var(--blue-3);
  border-radius: 5px;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.contact-button svg {
  width: 18px;
  fill: currentColor;
}

.affiliate-beacon {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.hero {
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 38%, rgba(255, 255, 255, .62) 58%, rgba(255, 255, 255, .18) 78%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(4, 36, 82, .08), rgba(4, 36, 82, .18)),
    url("../img/generated/hero-firstview-candidate-02.png") right center / cover no-repeat;
  border-bottom: 1px solid #e1e8f2;
}

.hero-inner {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  position: relative;
  overflow: visible;
}

.hero-copy {
  padding-top: 76px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  font-size: 43px;
  line-height: 1.42;
  font-weight: 700;
  color: #051b41;
}

.hero h1 span {
  white-space: nowrap;
}

.hero p {
  margin: 22px 0 24px;
  font-size: 17px;
  line-height: 1.65;
  color: #172e51;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.primary-button,
.secondary-button {
  height: 44px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.primary-button {
  width: 190px;
  color: white;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  box-shadow: 0 5px 12px rgba(0, 74, 152, .18);
}

.primary-button span,
.section-heading span:last-child {
  font-size: 22px;
  line-height: 1;
  margin-left: 5px;
}

.secondary-button {
  width: 194px;
  color: var(--blue);
  border: 1px solid #0a63bd;
  background: white;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual::before {
  display: none;
}

.hero-visual img {
  display: none;
}

.features {
  height: 104px;
  background: white;
  border-bottom: 1px solid #e4ebf5;
}

.feature-inner {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.circle-icon {
  width: 38px;
  height: 38px;
  border: 2px solid var(--blue-3);
  color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  flex: 0 0 auto;
}

.feature h2 {
  margin: 0 0 1px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
}

.feature p {
  margin: 0;
  color: #334a69;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
}

.search-panel {
  margin-top: 22px;
  padding: 18px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  box-shadow: 0 3px 14px rgba(11, 64, 128, .07);
}

.search-panel form {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 122px 112px;
  gap: 16px;
  align-items: end;
}

.search-panel label {
  color: #102746;
  font-size: 12px;
  font-weight: 700;
}

.search-panel select {
  appearance: none;
  width: 100%;
  height: 42px;
  margin-top: 5px;
  padding: 0 28px 0 10px;
  border: 1px solid #d8e2ee;
  border-radius: 3px;
  background:
    linear-gradient(45deg, transparent 50%, #35577d 50%) right 12px top 15px / 5px 5px no-repeat,
    linear-gradient(135deg, #35577d 50%, transparent 50%) right 8px top 15px / 5px 5px no-repeat,
    white;
  color: #172f51;
  font-size: 13px;
  font-weight: 700;
}

.check-label {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 19px;
  color: #334967;
  white-space: nowrap;
}

.check-label input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.search-panel button {
  height: 42px;
  border: 0;
  border-radius: 5px;
  color: white;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}

.search-panel button svg {
  width: 18px;
  fill: currentColor;
}

.consult-panel {
  margin-top: 22px;
  border-radius: 8px;
  border: 1px solid #cfe0f4;
  background: linear-gradient(135deg, #f7fbff 0%, #eaf4ff 100%);
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 42px;
  align-items: center;
  padding: 38px 48px;
  box-shadow: 0 6px 20px rgba(11, 64, 128, .08);
}

.consult-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.consult-copy h2 {
  max-width: 640px;
  margin: 0;
  color: #062653;
  font-size: 34px;
  line-height: 1.55;
  font-weight: 700;
}

.consult-copy p:not(.consult-label) {
  max-width: 720px;
  margin: 20px 0 24px;
  color: #314967;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
}

.consult-cta {
  min-width: 198px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff952f, var(--orange));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 32, 75, .18);
}

.consult-items {
  display: grid;
  gap: 14px;
}

.consult-item {
  min-height: 92px;
  border: 1px solid #d5e3f3;
  border-radius: 8px;
  background: white;
  padding: 22px 24px;
  box-shadow: 0 3px 12px rgba(11, 64, 128, .05);
}

.consult-item strong {
  display: block;
  color: #0b376f;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.consult-item span {
  display: block;
  margin-top: 8px;
  color: #4b5f7b;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.content-section,
.guide-cards,
.newsletter {
  margin-top: 28px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.section-heading h2 {
  margin: 0;
  color: #082653;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}

.heading-icon {
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.section-heading a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
}

.compare-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  table-layout: fixed;
  color: #102a4d;
  font-size: 12.5px;
  line-height: 1.55;
}

.compare-table th,
.compare-table td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 9px 12px;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}

.compare-table thead th {
  height: 62px;
  background: #f8fbff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.compare-table thead th:first-child,
.compare-table tbody th {
  width: 150px;
  text-align: left;
  background: #f8fbff;
  font-weight: 700;
}

.compare-table small {
  color: #516985;
  font-size: 11px;
}

.compare-table tbody tr:not(.logo-row):not(.action-row) th,
.compare-table tbody tr:not(.logo-row):not(.action-row) td {
  min-height: 54px;
  line-height: 1.65;
}

.logo-row td {
  height: 86px;
  padding-top: 14px;
}

.service-logo {
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.money {
  color: var(--orange);
  font-size: 16px;
}

.freee {
  color: #2b7bdc;
  font-size: 34px;
  font-style: italic;
}

.gva {
  color: #0c559e;
  font-size: 42px;
  letter-spacing: 1px;
}

.yayoi {
  color: #0959a7;
  font-size: 38px;
}

.venture {
  color: #193d7a;
  font-size: 17px;
  line-height: 1.2;
}

.mini-button {
  width: 88px;
  height: 28px;
  margin: 0 auto;
  border-radius: 3px;
  background: var(--blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.action-row th,
.action-row td {
  height: 58px;
  background: #fbfdff;
}

.note {
  margin: 8px 0 0;
  color: #8a9aaf;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
}

.compare-promotion-note {
  margin-top: 10px;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  padding: 24px 26px 20px 118px;
  position: relative;
  box-shadow: 0 2px 8px rgba(11, 64, 128, .04);
}

.guide-icon {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #edf5ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 700;
}

.guide-card strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
}

.guide-card p {
  margin: 11px 0 8px;
  color: #1b3355;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.guide-card em,
.image-card em,
.article-card em {
  color: var(--blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.purpose-grid,
.article-grid {
  grid-template-columns: repeat(4, 1fr);
}

.image-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(11, 64, 128, .04);
  position: relative;
}

.image-card img,
.article-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.image-card span,
.article-card span {
  position: absolute;
  left: 10px;
  top: 9px;
  border-radius: 3px;
  color: white;
  background: var(--blue);
  padding: 3px 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.image-card h3,
.article-card h3 {
  margin: 14px 16px 8px;
  color: #102a4d;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.image-card em,
.article-card em {
  display: block;
  margin: 0 16px 16px;
}

.latest-section {
  margin-top: 18px;
}

.article-card img {
  height: 92px;
}

.article-card:nth-child(2) span {
  background: var(--orange);
}

.article-card:nth-child(3) span {
  background: var(--green);
}

.article-card:nth-child(4) span {
  background: var(--sky);
}

.article-card h3 {
  margin-top: 12px;
  min-height: 56px;
  line-height: 1.45;
}

.article-card time {
  display: block;
  margin: 0 16px 15px;
  color: #6d7e95;
  font-size: 12px;
  font-weight: 700;
}

.newsletter {
  min-height: 122px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f7fbff 0%, #eaf4ff 100%);
  display: grid;
  grid-template-columns: 98px 1fr 560px;
  gap: 18px;
  align-items: center;
  padding: 26px 42px;
}

.mail-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid #98bdeb;
  background: white;
  color: var(--blue);
  display: grid;
  place-items: center;
}

.mail-icon svg {
  width: 48px;
  fill: currentColor;
}

.newsletter h2 {
  margin: 0 0 2px;
  color: #082653;
  font-size: 22px;
  font-weight: 700;
}

.newsletter p {
  margin: 0;
  color: #4c617e;
  font-size: 14px;
  font-weight: 400;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 124px;
  gap: 12px;
  align-items: center;
}

.newsletter input {
  height: 46px;
  border: 1px solid #cbd8e8;
  border-radius: 4px;
  padding: 0 15px;
  color: #142d51;
  font-size: 14px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.newsletter button {
  height: 46px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.newsletter button:disabled {
  cursor: wait;
  opacity: .65;
}

.newsletter small {
  grid-column: 1 / -1;
  color: #6a7c93;
  font-size: 12px;
  font-weight: 700;
}

.newsletter-message.is-success {
  color: #1d7a43;
}

.newsletter-message.is-error {
  color: #b42318;
}

.site-footer {
  margin-top: 20px;
  min-height: 280px;
  background: linear-gradient(135deg, #003b7a 0%, var(--blue) 54%, #003163 100%);
  color: white;
  position: relative;
  padding: 42px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 380px repeat(3, 1fr);
  gap: 56px;
}

.brand-footer {
  color: white;
}

.brand-footer .brand-logo {
  width: 210px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 21px 0 16px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.footer-col h2 {
  margin: 4px 0 11px;
  font-size: 16px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 2.05;
  font-weight: 700;
}

.copyright {
  margin: 19px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}

.page-top {
  position: absolute;
  right: 34px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.page-hero {
  background: linear-gradient(90deg, #f2f7ff 0%, #fff 100%);
  border-bottom: 1px solid #e3ebf6;
}

.page-hero-inner {
  display: block;
  padding: 64px 0 58px;
}

.eyebrow,
.section-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.page-hero h1 {
  margin: 0;
  color: #061f48;
  font-size: 48px;
  line-height: 1.35;
  font-weight: 700;
}

.hero-lead {
  max-width: 850px;
  margin: 18px 0 0;
  color: #314967;
  font-size: 18px;
  font-weight: 400;
}

.page-section {
  margin-top: 42px;
}

.support-section,
.content-panel,
.support-contact,
.faq-list,
.service-list {
  width: min(1200px, calc(100vw - 64px));
  margin-left: auto;
  margin-right: auto;
}

.support-section,
.content-panel,
.support-contact {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 36px;
  box-shadow: 0 2px 10px rgba(11, 64, 128, .04);
}

.support-section h2,
.content-panel h2,
.support-contact h2,
.section-h2 {
  margin: 0 0 14px;
  color: #082653;
  font-size: 29px;
  line-height: 1.45;
  font-weight: 700;
}

.support-section p,
.content-panel p,
.support-contact p,
.faq-list p {
  color: #283f5e;
  font-size: 16px;
  font-weight: 400;
}

.support-steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.support-steps li {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid #e0e8f3;
  border-radius: 5px;
  background: #f8fbff;
}

.support-steps strong {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.support-steps span {
  color: #314967;
  font-size: 15px;
  font-weight: 700;
}

.service-list {
  grid-template-columns: repeat(2, 1fr);
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(11, 64, 128, .04);
}

.detail-card h2 {
  margin: 0 0 12px;
  color: #082653;
  font-size: 24px;
  font-weight: 700;
}

.detail-card p {
  color: #314967;
  font-size: 16px;
  font-weight: 400;
}

.detail-card dl,
.info-dl,
.form-complete dl {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 0;
  margin: 16px 0;
  border: 1px solid #e0e8f3;
  border-radius: 5px;
  overflow: hidden;
}

.detail-card dt,
.detail-card dd,
.info-dl dt,
.info-dl dd,
.form-complete dt,
.form-complete dd {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #e0e8f3;
  font-size: 15px;
  font-weight: 700;
}

.detail-card dt,
.info-dl dt,
.form-complete dt {
  background: #f8fbff;
  color: #0c3369;
}

.detail-card dd,
.info-dl dd,
.form-complete dd {
  color: #283f5e;
}

.detail-card dt:nth-last-child(2),
.detail-card dd:last-child,
.info-dl dt:nth-last-child(2),
.info-dl dd:last-child,
.form-complete dt:nth-last-child(2),
.form-complete dd:last-child {
  border-bottom: 0;
}

.text-link {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.faq-list details {
  border: 1px solid #e0e8f3;
  border-radius: 5px;
  background: white;
  padding: 20px 22px;
  margin-bottom: 14px;
}

.faq-list summary {
  color: #082653;
  cursor: pointer;
  font-weight: 700;
}

.support-contact {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 40px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-panel {
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-form label {
  color: #102746;
  font-size: 15px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 5px;
  border: 1px solid #cbd8e8;
  border-radius: 4px;
  padding: 14px 16px;
  color: #142d51;
  font-size: 16px;
}

.required {
  margin-left: 6px;
  color: #fff;
  background: var(--blue);
  border-radius: 3px;
  padding: 2px 5px;
  font-size: 12px;
}

.form-error {
  margin: -6px 0 0;
  color: #b42318;
  font-size: 14px;
}

.primary-cta {
  min-width: 170px;
  height: 48px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}

.primary-cta.small {
  width: 128px;
}

.content-panel ul {
  margin: 0 0 18px;
  padding-left: 1.4em;
  color: #283f5e;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .header-inner,
  .hero-inner,
  .feature-inner,
  .search-panel,
  .consult-panel,
  .content-section,
  .guide-cards,
  .newsletter,
  .footer-inner {
    width: min(100% - 28px, 868px);
  }

  .global-nav {
    display: none;
  }

  .contact-button {
    margin-left: auto;
  }

  .hero {
    min-height: 390px;
    background-position: 58% center;
  }

  .hero-inner {
    min-height: 390px;
    display: block;
  }

  .hero-copy {
    padding: 34px 0 94px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.45;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero p {
    max-width: 560px;
    font-size: 15px;
  }

  .hero-visual {
    inset: 0;
    height: auto;
  }

  .section-heading {
    align-items: flex-start;
    gap: 10px;
  }

  .features {
    height: auto;
  }

  .feature-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
    padding: 18px 0;
  }

  .search-panel form,
  .consult-panel,
  .guide-cards,
  .purpose-grid,
  .article-grid,
  .newsletter,
  .footer-inner,
  .service-list,
  .support-contact {
    grid-template-columns: 1fr;
  }

  .consult-panel {
    gap: 24px;
    padding: 28px 24px;
  }

  .consult-copy h2 {
    font-size: 24px;
    line-height: 1.55;
  }

  .consult-copy p:not(.consult-label) {
    font-size: 15px;
  }

  .support-section,
  .content-panel,
  .support-contact,
  .faq-list,
  .service-list {
    width: min(100% - 28px, 868px);
  }

  .support-steps li {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero-inner,
  .feature-inner,
  .consult-panel,
  .content-section,
  .guide-cards,
  .newsletter,
  .footer-inner,
  .support-section,
  .content-panel,
  .support-contact,
  .faq-list,
  .service-list {
    width: min(100% - 28px, 420px);
  }

  .site-header {
    height: 70px;
  }

  .brand-logo {
    width: min(270px, calc(100vw - 48px));
  }

  .contact-button {
    display: none;
  }

  .hero {
    min-height: 420px;
    background-position: 62% center;
  }

  .hero-inner {
    min-height: 420px;
  }

  .hero-copy {
    padding: 34px 0 78px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.48;
  }

  .hero p {
    margin: 18px 0 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    gap: 10px;
  }

  .hero-actions a {
    width: 100%;
  }

  .features {
    border-top: 1px solid #e4ebf5;
  }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .feature {
    align-items: flex-start;
  }

  .consult-panel {
    padding: 24px 18px;
    gap: 20px;
  }

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

  .consult-cta {
    width: 100%;
  }

  .consult-item {
    padding: 18px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 22px;
    line-height: 1.45;
    align-items: flex-start;
  }

  .section-heading a {
    margin-top: 8px;
    display: inline-flex;
  }

  .guide-card {
    min-height: 0;
    padding: 20px 18px 18px 82px;
  }

  .guide-icon {
    left: 18px;
    top: 20px;
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .article-card h3 {
    min-height: 0;
  }

  .newsletter {
    padding: 24px 18px;
  }

  .mail-icon {
    width: 56px;
    height: 56px;
  }

  .newsletter h2 {
    font-size: 20px;
  }

  .support-section,
  .content-panel,
  .support-contact {
    padding: 22px 18px;
  }

  .page-hero-inner {
    padding: 42px 0 38px;
  }

  .page-hero h1 {
    font-size: 30px;
    line-height: 1.4;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .support-section h2,
  .content-panel h2,
  .support-contact h2,
  .section-h2 {
    font-size: 23px;
  }

  .support-steps li {
    padding: 18px;
  }

  .detail-card {
    padding: 22px 18px;
  }

  .detail-card dl,
  .info-dl,
  .form-complete dl {
    grid-template-columns: 1fr;
  }

  .detail-card dt,
  .info-dl dt,
  .form-complete dt {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .detail-card dd,
  .info-dl dd,
  .form-complete dd {
    padding-top: 6px;
  }
}
