/* ============================================
   トップページ固有スタイル
   ============================================ */

/* --- Hero (Dynamic MV) --- */
.hero {
  background: linear-gradient(135deg, #f0f3fc 0%, #e8edf9 40%, #f5f8fd 100%);
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

/* Geometric Decorations */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__deco--circle {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(71, 85, 204, 0.08) 0%, rgba(71, 85, 204, 0.02) 100%);
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.hero__deco--diagonal {
  width: 300px;
  height: 600px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, rgba(71, 85, 204, 0.7) 100%);
  right: 28%;
  top: -80px;
  transform: rotate(-20deg);
  opacity: 0.07;
}

.hero__deco--dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--brand-blue) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.08;
  left: 3%;
  bottom: 80px;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hero__content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.hero__label {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-black);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--brand-blue);
}

.hero__sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 28px;
}

.hero__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__badge {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(71, 85, 204, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
}

.hero__badge-label {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.hero__badge-value {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-blue);
}

.hero__badge-value small {
  font-size: 18px;
}

.hero__badge--award {
  text-align: left;
}

.hero__badge--award .hero__badge-label {
  font-weight: 700;
  color: var(--text-black);
  font-size: 13px;
  margin-bottom: 6px;
}

.hero__badge-detail {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-gray);
}

.hero__badge-detail strong {
  color: var(--text-black);
}

/* Visual: Large Circle with Person Photo */
.hero__visual {
  flex-shrink: 0;
  width: 460px;
  position: relative;
  z-index: 2;
}

.hero__visual-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(71, 85, 204, 0.2);
  border: 6px solid rgba(255, 255, 255, 0.6);
}

.hero__visual-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(71, 85, 204, 0.15) 100%);
  z-index: 1;
  border-radius: 50%;
}

.hero__visual-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__visual:hover .hero__visual-circle img {
  transform: scale(1.05);
}

/* Small accent circle */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-yellow);
  top: -10px;
  right: -10px;
  z-index: -1;
  opacity: 0.6;
}

.hero__visual::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-blue);
  bottom: 40px;
  left: -20px;
  z-index: 3;
  opacity: 0.3;
}

.hero__cta-bar {
  background: var(--text-black);
  padding: 20px 24px;
  text-align: center;
}

.hero__cta-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.hero__cta-bar .btn--dark {
  background: var(--bg-white);
  color: var(--text-black);
}

.hero__cta-bar .btn--dark:hover {
  background: #f0f0f0;
  opacity: 1;
}

/* --- Benefit --- */
.benefit {
  background: var(--bg-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.benefit::after {
  content: 'PHILOSOPHY';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 700;
  color: var(--brand-blue);
  opacity: 0.025;
  pointer-events: none;
  letter-spacing: 8px;
}

.benefit__lead {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: var(--text-black);
  margin-bottom: 16px;
}

.benefit__divider {
  width: 500px;
  max-width: 100%;
  height: 2px;
  background: var(--text-black);
  margin: 0 auto 48px;
}

.benefit__body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.benefit__image {
  flex-shrink: 0;
  width: 200px;
}

.benefit__image img {
  width: 100%;
  border-radius: 50%;
  background: #d9d9d9;
}

.benefit__text {
  flex: 1;
}

.benefit__text p {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 16px;
}

.benefit__text p:last-child {
  margin-bottom: 0;
}

/* --- Pain Points --- */
.pain-points {
  background: var(--bg-page);
  padding: 80px 0;
}

.pain-points__heading {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color: var(--text-black);
  margin-bottom: 48px;
  line-height: 1.5;
}

.pain-points__heading-accent {
  font-size: 36px;
  font-weight: 700;
}

.pain-points__list {
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-points__item {
  background: var(--bg-white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pain-points__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pain-points__image {
  max-width: 500px;
  margin: 0 auto;
}

.pain-points__image img {
  width: 100%;
  border-radius: var(--radius-md);
  background: #d9d9d9;
  min-height: 200px;
}

/* --- Before / After --- */
.before-after {
  background: var(--bg-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.before-after::before {
  content: 'VOICE';
  position: absolute;
  top: 20px;
  left: -20px;
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 700;
  color: var(--brand-blue);
  opacity: 0.025;
  pointer-events: none;
  letter-spacing: 8px;
}

.before-after__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  color: var(--text-black);
  margin-bottom: 48px;
  line-height: 1.5;
}

.before-after__heading-accent {
  font-size: 36px;
  font-weight: 700;
}

.before-after__grid {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.before-after__card {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 300px;
}

.before-after__card--before {
  background: var(--bg-white);
  border: 1px solid #e0e0e0;
}

.before-after__card--after {
  background: var(--brand-yellow-light);
  border: 1px solid rgba(253, 212, 36, 0.3);
}

.before-after__label {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-black);
}

.before-after__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.before-after__list li {
  font-size: 17px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.before-after__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.before-after__card--before .before-after__list li::before {
  background: #ccc;
}

.before-after__card--after .before-after__list li::before {
  background: var(--brand-blue);
}

.before-after__arrow {
  flex-shrink: 0;
}

/* --- Services --- */
.services {
  background: linear-gradient(180deg, #f5f8fd 0%, #eaedfb 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.services::after {
  content: 'SERVICE';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 100px;
  font-weight: 700;
  color: var(--brand-blue);
  opacity: 0.03;
  pointer-events: none;
  letter-spacing: 12px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.services__card {
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.services__card-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.services__card-icon img {
  width: 60px;
  height: 60px;
}

.services__card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 16px;
}

.services__card-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
  text-align: left;
}

.services__card-link {
  display: inline-block;
  background: #d9d9d9;
  border-radius: var(--radius-full);
  padding: 10px 40px;
  font-size: 16px;
  color: var(--text-black);
  font-weight: 500;
  transition: background 0.3s ease;
}

.services__card:hover .services__card-link {
  background: var(--brand-blue);
  color: var(--text-white);
}

/* --- Partners --- */
.partners {
  background: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

.partners__note {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 32px;
}

/* Partner Banners */
.partner-banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-black);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.partner-banner--yellow {
  background: linear-gradient(135deg, #fef9e0 0%, #fdf3c7 100%);
  border: 1px solid rgba(253, 212, 36, 0.3);
}

.partner-banner--white {
  background: var(--bg-white);
  border: 1px solid #e0e0e0;
}

.partner-banner--blue {
  background: linear-gradient(135deg, #eef1fd 0%, #dfe4fa 100%);
  border: 1px solid rgba(71, 85, 204, 0.15);
}

.partner-banner__logo {
  flex-shrink: 0;
  width: 160px;
  text-align: center;
}

.partner-banner__logo-sub {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 1px;
}

.partner-banner__logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.3;
}

.partner-banner__logo-text--large {
  font-size: 24px;
  display: block;
  color: var(--brand-blue);
}

.partner-banner__content {
  flex: 1;
  text-align: left;
}

.partner-banner__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 8px;
}

.partner-banner__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
}

.partner-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-black);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: background 0.3s ease;
}

.partner-banner:hover .partner-banner__cta {
  background: var(--brand-blue);
}

/* --- Comparison Table --- */
.comparison {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-white) 100%);
  padding: 100px 0 80px;
  position: relative;
}

.comparison::before {
  content: 'WHY US';
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: var(--font-en);
  font-size: 100px;
  font-weight: 700;
  color: var(--brand-blue);
  opacity: 0.025;
  pointer-events: none;
  letter-spacing: 6px;
}

.comparison__table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 700px;
}

.comparison__table th,
.comparison__table td {
  padding: 20px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e0e0e0;
}

.comparison__table thead th {
  background: rgba(71, 85, 204, 0.13);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-black);
  text-align: center;
}

.comparison__table thead th:first-child {
  width: 180px;
}

.comparison__highlight {
  color: var(--brand-blue) !important;
}

.comparison__category {
  font-weight: 700;
  background: #f8f9fc;
  width: 180px;
}

.comparison__blue {
  color: var(--brand-blue);
  font-weight: 700;
}

.comparison__note {
  margin-top: 24px;
}

/* --- Ribe Message --- */
.ribe-message {
  background: rgba(217, 217, 217, 0.32);
  padding: 60px 0;
}

.ribe-message__inner {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.ribe-message__image {
  flex-shrink: 0;
  width: 180px;
}

.ribe-message__image img {
  width: 100%;
  border-radius: 50%;
  background: #d9d9d9;
}

.ribe-message__content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-black);
  margin-top: 12px;
}

/* --- Voices Slider --- */
.voices {
  background: var(--bg-page);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.voices::after {
  content: 'CLIENT VOICE';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 700;
  color: var(--brand-blue);
  opacity: 0.025;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 6px;
}

.voices__slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.voice-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.voice-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.voice-card__image {
  width: 100%;
  height: 200px;
  background: #d9d9d9;
  overflow: hidden;
}

.voice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-card__body {
  padding: 20px;
}

.voice-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--bg-light-blue);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.voice-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-black);
  margin-bottom: 8px;
}

.voice-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Profile Section --- */
.profile-section {
  background: var(--bg-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.profile-section::after {
  content: 'TEAM';
  position: absolute;
  top: 30px;
  right: -10px;
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 700;
  color: var(--brand-blue);
  opacity: 0.025;
  pointer-events: none;
  letter-spacing: 8px;
}

/* Featured (Representative) */
.profile-featured {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto 60px;
  background: linear-gradient(135deg, #f5f8fd, #eaedfb);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.profile-featured::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-yellow));
  opacity: 0.15;
  z-index: -1;
}

.profile-featured__image {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #d9d9d9;
  border: 4px solid var(--bg-white);
  box-shadow: 0 4px 20px rgba(71, 85, 204, 0.15);
}

.profile-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-featured__role {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
  background: rgba(71, 85, 204, 0.1);
  display: inline-block;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.profile-featured__name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 16px;
}

.profile-featured__nickname {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
}

.profile-featured__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Grid */
.profile-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.profile-card {
  text-align: center;
  background: var(--bg-page);
  border-radius: var(--radius-md);
  padding: 28px 16px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(71, 85, 204, 0.1);
}

.profile-card__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  background: #d9d9d9;
  border: 3px solid var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__role {
  font-size: 12px;
  color: var(--brand-blue);
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-card__badge {
  display: inline-block;
  background: var(--brand-yellow);
  color: var(--text-black);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
}

.profile-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-black);
}

.profile-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-gray);
  text-align: left;
}

/* --- Price Section --- */
.price-section {
  background: var(--bg-page);
  padding: 80px 0;
}

.price-section__table-wrap {
  overflow-x: auto;
}

/* --- FAQ Section --- */
.faq-section {
  background: var(--bg-white);
  padding: 80px 0;
}

/* --- Responsive --- */
@media (max-width: 840px) {
  .partner-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .partner-banner__content {
    text-align: center;
  }

  .partner-banner__logo {
    width: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    flex-direction: column;
    padding: 40px 24px 0;
  }

  .hero__visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero__visual-circle {
    width: 300px;
    height: 300px;
  }

  .hero__deco--circle {
    width: 350px;
    height: 350px;
    right: -10%;
    top: auto;
    bottom: 10%;
    transform: none;
  }

  .hero__deco--diagonal {
    width: 200px;
    height: 400px;
    right: 15%;
  }

  .hero__title {
    font-size: 30px;
  }

  .before-after__grid {
    flex-direction: column;
  }

  .before-after__arrow {
    transform: rotate(90deg);
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .profile-section__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .profile-featured {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .ribe-message__inner {
    flex-direction: column;
    text-align: center;
  }

  .benefit__body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pain-points__heading {
    font-size: 24px;
  }

  .pain-points__heading-accent {
    font-size: 28px;
  }

  .before-after__heading {
    font-size: 22px;
  }

  .before-after__heading-accent {
    font-size: 28px;
  }

  .comparison__table {
    min-width: 600px;
  }
}

@media (max-width: 540px) {
  .hero__title {
    font-size: 26px;
  }

  .hero__label {
    font-size: 13px;
    padding: 5px 14px;
  }

  .hero__sub {
    font-size: 15px;
  }

  .hero__badges {
    flex-direction: column;
  }

  .hero__badge-value {
    font-size: 28px;
  }

  .hero__visual-circle {
    width: 250px;
    height: 250px;
  }

  .hero__visual::before {
    width: 50px;
    height: 50px;
  }

  .hero__deco--diagonal {
    display: none;
  }

  .benefit__lead {
    font-size: 22px;
  }

  .benefit__image {
    width: 150px;
  }

  .voices__slider {
    grid-template-columns: 1fr;
  }

  .profile-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .profile-featured__name {
    font-size: 22px;
  }

  .pain-points__item {
    font-size: 16px;
    padding: 16px 20px;
  }

  .before-after__card {
    padding: 24px;
  }
}
