/* ============================================================
   Top page — scoped styles
   Palette per spec:
     navy:    #0B2F63
     blue:    #005BAC
     cta:     #0074B8
     tint:    #F3F9FD
     light:   #F6F8FA
     border:  #DDE8F0
============================================================ */

:root {
  --top-navy:   #0B2F63;
  --top-blue:   #005BAC;
  --top-cta:    #0074B8;
  --top-tint:   #F3F9FD;
  --top-light:  #F6F8FA;
  --top-border: #DDE8F0;
  --top-text:   #1F2A44;
  --top-muted:  #5A6885;
}

/* === Top page: force header nav visible at smaller preview widths too === */
@media (min-width: 880px) {
  .top-page .site-header__inner .nav { display: flex !important; }
  .top-page .site-header__inner .nav-cta.header-cta { display: inline-flex !important; }
  .top-page .site-header__inner .mobile-toggle { display: none !important; }
  .top-page .site-header__inner { gap: 20px; padding: 12px 20px; }
  .top-page .site-header__inner .nav { gap: 18px; }
  .top-page .site-header__inner .nav a { font-size: 13.5px; }
  .top-page .site-header__inner .brand__name { font-size: 15.5px; }
  .top-page .site-header__inner .brand__tagline { font-size: 10px; }
  .top-page .site-header__inner .nav-cta.header-cta {
    padding: 10px 18px; font-size: 13px; min-width: 0;
  }
}

/* ---------- Buttons (scoped) ---------- */
.top-hero .btn, .top-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  line-height: 1;
  transition: all .18s;
  min-width: 200px;
}
.btn--lg { padding: 16px 32px; font-size: 15.5px; min-width: 240px; }
.btn--primary {
  background: var(--top-blue);
  color: #fff;
  border: 1.5px solid var(--top-blue);
  box-shadow: 0 4px 10px rgba(0,91,172,0.18);
}
.btn--primary:hover { background: var(--top-cta); border-color: var(--top-cta); transform: translateY(-1px); }
.btn--ghost-blue {
  background: #fff;
  color: var(--top-blue);
  border: 1.5px solid var(--top-blue);
}
.btn--ghost-blue:hover { background: var(--top-tint); }

/* ---------- Hero ---------- */
.top-hero {
  background: linear-gradient(90deg, var(--top-tint) 0%, var(--top-tint) 40%, #EAF3FB 100%);
  border-bottom: 1px solid var(--top-border);
  overflow: hidden;
}
.top-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 380px;
  position: relative;
}
.top-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--top-muted);
  margin-bottom: 18px;
  white-space: nowrap;
}
.top-crumb a, .top-crumb span { white-space: nowrap; }
.top-crumb a { color: var(--top-muted); text-decoration: none; }
.top-crumb a:hover { color: var(--top-blue); }
.top-crumb .sep { color: var(--top-border); }
.top-crumb .current { color: var(--top-navy); font-weight: 600; }

.top-hero__title {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  color: var(--top-navy);
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 0 20px;
}
.top-hero__sub {
  font-size: 16px;
  line-height: 1.95;
  color: var(--top-text);
  margin: 0 0 28px;
}
.top-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.top-hero__img {
  position: relative;
  height: 100%;
  min-height: 360px;
  margin-right: calc(-1 * max((100vw - 1200px) / 2, 0px));
}
.top-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-hero__img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--top-tint) 0%,
    rgba(243,249,253,0.6) 12%,
    rgba(243,249,253,0) 30%);
  pointer-events: none;
}

/* ---------- Hero extras (top page) ---------- */
.top-hero__eyebrow {
  display: inline-block;
  font-size: 12.5px;
  color: var(--top-blue);
  background: rgba(0, 91, 172, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.top-hero__note {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--top-muted);
  margin: -10px 0 24px;
}
.top-hero__tags {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.top-hero__tags li {
  font-size: 12px;
  color: var(--top-navy);
  background: #fff;
  border: 1px solid var(--top-border);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.top-hero__tags li::before {
  content: "✓";
  color: var(--top-blue);
  font-weight: 800;
  margin-right: 6px;
}

/* ---------- About: 渡邊商会について ---------- */
.top-about {
  padding: 64px 0 72px;
  background: #fff;
}
.top-about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.top-about__text .top-sec-head {
  text-align: left;
  margin-bottom: 22px;
}
.top-about__text .top-sec-head h2 {
  font-size: 24px;
  line-height: 1.55;
}
.top-about__text .top-sec-head__line {
  display: block;
  margin-top: 8px;
}
.top-about__text p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--top-text);
  margin: 0 0 16px;
}
.top-about__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.top-about__card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--top-tint);
  border: 1px solid var(--top-border);
  border-radius: 12px;
}
.top-about__card svg {
  color: var(--top-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.top-about__card-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--top-navy);
  margin-bottom: 4px;
}
.top-about__card-body {
  font-size: 13px;
  color: var(--top-muted);
  line-height: 1.75;
}

/* ---------- Services lead ---------- */
.top-services__lead {
  text-align: center;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--top-muted);
  margin: -12px auto 32px;
  max-width: 720px;
}

/* ---------- Our capabilities ---------- */
.top-ours {
  padding: 64px 0 72px;
  background: var(--top-tint);
}
.top-ours__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.top-ours__card {
  background: #fff;
  border: 1px solid var(--top-border);
  border-radius: 12px;
  padding: 24px 18px 22px;
  text-align: left;
  transition: transform .18s, box-shadow .18s;
}
.top-ours__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -20px rgba(11,47,99,0.28);
}
.top-ours__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--top-tint);
  color: var(--top-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.top-ours__title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--top-navy);
  margin-bottom: 8px;
}
.top-ours__body {
  font-size: 12.5px;
  color: var(--top-muted);
  line-height: 1.8;
  margin: 0;
}

/* ---------- Cases ---------- */
.top-cases {
  padding: 64px 0 72px;
  background: #fff;
}
.top-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.top-case {
  background: #fff;
  border: 1px solid var(--top-border);
  border-radius: 12px;
  padding: 22px 22px 20px;
  transition: transform .18s, box-shadow .18s;
}
.top-case:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -20px rgba(11,47,99,0.28);
}
.top-case__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--top-blue);
  background: rgba(0, 91, 172, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.top-case__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--top-navy);
  line-height: 1.55;
  margin-bottom: 10px;
}
.top-case__body {
  font-size: 13px;
  color: var(--top-muted);
  line-height: 1.85;
  margin: 0;
}

/* ---------- FAQ ---------- */
.top-faqs {
  padding: 64px 0 72px;
  background: var(--top-tint);
}
.top-faqs__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.top-faq {
  background: #fff;
  border: 1px solid var(--top-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.top-faq.is-open {
  border-color: rgba(0,91,172,0.4);
  box-shadow: 0 8px 20px -16px rgba(11,47,99,0.32);
}
.top-faq__q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: 0;
  padding: 18px 20px;
  text-align: left;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--top-navy);
  cursor: pointer;
  line-height: 1.55;
}
.top-faq__qmark,
.top-faq__amark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.top-faq__qmark {
  background: var(--top-blue);
  color: #fff;
}
.top-faq__amark {
  background: var(--top-tint);
  color: var(--top-blue);
}
.top-faq__qtext { flex: 1; }
.top-faq__chev {
  color: var(--top-muted);
  transition: transform .2s;
  flex-shrink: 0;
}
.top-faq.is-open .top-faq__chev { transform: rotate(180deg); color: var(--top-blue); }
.top-faq__a {
  display: flex;
  gap: 14px;
  padding: 0 20px 20px 20px;
  font-size: 13.5px;
  color: var(--top-text);
  line-height: 1.95;
}

/* ---------- Section head ---------- */
.top-sec-head {
  text-align: center;
  margin-bottom: 36px;
}
.top-sec-head h2 {
  font-size: 26px;
  color: var(--top-navy);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.top-sec-head__line {
  display: inline-block;
  width: 38px;
  height: 2.5px;
  background: var(--top-blue);
  border-radius: 2px;
}

/* ---------- Services ---------- */
.top-services {
  padding: 56px 0 64px;
  background: #fff;
}
.top-svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.top-svc {
  background: #fff;
  border: 1px solid var(--top-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.top-svc:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(11,47,99,0.28);
  border-color: #C4D8EA;
}
.top-svc__img {
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--top-light);
}
.top-svc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-svc__body {
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.top-svc__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--top-navy);
  margin-bottom: 10px;
}
.top-svc__title svg { color: var(--top-blue); }
.top-svc__desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--top-muted);
  margin: 0 0 14px;
}
.top-svc__block { margin-bottom: 12px; }
.top-svc__label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--top-navy);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--top-border);
  margin-bottom: 8px;
}
.top-svc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-svc li {
  font-size: 13px;
  color: var(--top-text);
  line-height: 1.8;
  padding-left: 12px;
  position: relative;
}
.top-svc li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--top-blue);
}
.top-svc__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--top-border);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--top-navy);
  font-weight: 700;
  transition: background .18s, color .18s, border-color .18s;
}
.top-svc:hover .top-svc__more {
  background: var(--top-blue);
  border-color: var(--top-blue);
  color: #fff;
}
.top-services__foot {
  text-align: center;
  margin-top: 28px;
}
.top-services__foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--top-blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.top-services__foot a:hover { text-decoration: underline; }

/* ---------- Items ---------- */
.top-items {
  padding: 56px 0 64px;
  background: var(--top-tint);
}
.top-items__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.top-item {
  background: #fff;
  border: 1px solid var(--top-border);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .18s, box-shadow .18s;
}
.top-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -18px rgba(11,47,99,0.28);
}
.top-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--top-tint);
  color: var(--top-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  display: block;
}
.top-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: var(--top-navy);
  font-weight: 600;
  line-height: 1.55;
}
.top-items__note {
  text-align: center;
  font-size: 13px;
  color: var(--top-muted);
  margin-top: 22px;
}

/* ---------- Pains ---------- */
.top-pains {
  padding: 56px 0 56px;
  background: #fff;
}
.top-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.top-pain {
  background: #fff;
  border: 1px solid var(--top-border);
  border-radius: 12px;
  padding: 18px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--top-navy);
  font-weight: 600;
  line-height: 1.7;
}
.top-pain__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--top-tint);
  color: var(--top-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---------- Compare + Flow ---------- */
.top-compare {
  padding: 56px 0 72px;
  background: #fff;
}
.top-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.top-compare__card {
  background: #fff;
  border: 1px solid var(--top-border);
  border-radius: 12px;
  overflow: hidden;
}
.top-compare__head {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.top-compare__head--ours {
  background: var(--top-blue);
  color: #fff;
}
.top-compare__head--theirs {
  background: var(--top-light);
  color: var(--top-muted);
}
.top-compare__card ul {
  list-style: none;
  padding: 16px 18px;
  margin: 0;
}
.top-compare__card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--top-text);
  line-height: 1.8;
  padding: 9px 0;
  border-bottom: 1px dashed var(--top-border);
}
.top-compare__card li:last-child { border-bottom: none; }
.top-compare__card--theirs li { color: var(--top-muted); }
.top-ok {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,91,172,0.1);
  color: var(--top-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.top-ng {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #EEF1F4;
  color: #9AA6BC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Flow card */
.top-flow {
  padding: 0;
}
.top-flow__head {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: var(--top-navy);
  border-bottom: 1px solid var(--top-border);
  background: #fff;
}
.top-flow ol {
  list-style: none;
  padding: 16px 18px 10px;
  margin: 0;
}
.top-flow li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  position: relative;
}
.top-flow li + li { border-top: 1px dashed var(--top-border); }
.top-flow__n {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--top-blue);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.top-flow__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--top-navy);
  margin-bottom: 2px;
  line-height: 1.4;
}
.top-flow__body {
  font-size: 12.5px;
  color: var(--top-muted);
  line-height: 1.6;
}
.top-flow__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-size: 12.5px;
  color: var(--top-blue);
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid var(--top-border);
  background: #FBFDFF;
}
.top-flow__more:hover { background: var(--top-tint); }

/* ---------- CTA Band ---------- */
.top-cta-wrap {
  padding: 48px 0 72px;
  background: #fff;
}
.top-cta {
  background: var(--top-tint);
  border: 1px solid var(--top-border);
  border-radius: 16px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}
.top-cta__img {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px -8px rgba(11,47,99,0.3);
}
.top-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.top-cta__body h3 {
  font-size: 19px;
  color: var(--top-navy);
  font-weight: 800;
  margin: 0 0 6px;
}
.top-cta__body p {
  font-size: 14px;
  color: var(--top-muted);
  margin: 0;
  line-height: 1.7;
}
.top-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.top-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--top-blue);
  text-decoration: none;
  font-weight: 600;
}
.top-cta__link:hover { text-decoration: underline; }

/* Tighten cards so they fit 5 across on slightly smaller viewports */
.top-svc-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
.top-svc__body { padding: 14px 14px 14px; }
.top-svc__title { font-size: 14.5px; }
.top-svc__desc { font-size: 12px; margin-bottom: 11px; line-height: 1.7; }
.top-svc__label { font-size: 11.5px; padding-bottom: 6px; margin-bottom: 7px; }
.top-svc li { font-size: 12px; line-height: 1.7; padding-left: 10px; }
.top-svc__more { font-size: 12.5px; padding: 9px 8px; }
.top-svc__block { margin-bottom: 10px; }
.top-svc__img { aspect-ratio: 5/3.2; }

/* ---------- Responsive ---------- */
/* Force desktop layout above 720px even when preview is narrow */
@media (min-width: 720px) {
  .top-hero__inner { grid-template-columns: 1.05fr 1fr !important; gap: 0 !important; }
  .top-svc-grid { grid-template-columns: repeat(5, 1fr) !important; }
  .top-items__grid { grid-template-columns: repeat(6, 1fr) !important; }
  .top-pain-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .top-compare__grid { grid-template-columns: 1fr 1fr 1fr !important; }
  .top-cta { grid-template-columns: auto 1fr auto !important; }
  .top-about__inner { grid-template-columns: 1.2fr 1fr !important; gap: 56px !important; }
  .top-ours__grid { grid-template-columns: repeat(5, 1fr) !important; }
  .top-cases__grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 720px) {
  .top-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .top-items__grid { grid-template-columns: repeat(3, 1fr); }
  .top-pain-grid { grid-template-columns: repeat(2, 1fr); }
  .top-compare__grid { grid-template-columns: 1fr; }
  .top-hero__inner { grid-template-columns: 1fr; gap: 20px; padding: 20px 24px 36px; }
  /* On mobile/tablet, place hero image ABOVE the text so it's visible in the first viewport */
  .top-hero__text { order: 2; }
  .top-hero__img  { order: 1; min-height: 200px; aspect-ratio: 16 / 10; margin-right: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,40,80,0.06); }
  .top-hero__img-fade { display: none; }
  .top-about__inner { grid-template-columns: 1fr; gap: 28px; }
  .top-ours__grid { grid-template-columns: repeat(2, 1fr); }
  .top-cases__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .top-hero__inner { padding: 16px 18px 28px; gap: 16px; }
  .top-hero__img { min-height: 180px; aspect-ratio: 16 / 10; border-radius: 12px; }
  .top-hero__title { font-size: 26px; margin: 4px 0 14px; }
  .top-hero__sub { font-size: 14.5px; line-height: 1.85; margin: 0 0 16px; }
  .top-hero__note { margin: -4px 0 16px; }
  .top-hero__eyebrow { margin: 0 0 12px; }
  .top-hero__ctas .btn { min-width: 0; width: 100%; }
  .top-svc-grid { grid-template-columns: 1fr; }
  .top-items__grid { grid-template-columns: repeat(2, 1fr); }
  .top-pain-grid { grid-template-columns: 1fr; }
  .top-cta { grid-template-columns: 1fr; text-align: center; }
  .top-cta__img { margin: 0 auto; }
  .top-cta__actions { align-items: stretch; }
  .top-cta__actions .btn { min-width: 0; width: 100%; }
  .top-ours__grid { grid-template-columns: 1fr; }
  .top-faq__q { font-size: 13.5px; padding: 16px 16px; }
  .top-faq__a { padding: 0 16px 16px; font-size: 13px; }
}
