/* ==========================================================================
   Homepage — stili dedicati (body.page-home)
   ========================================================================== */

/* ---- Sezione piani / hero ---- */
.page-home .section-pricing {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f4f4f4 0%, #fafdfe 45%, #ffffff 100%);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(60, 181, 208, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(60, 181, 208, 0.08) 0%, transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(60, 181, 208, 0.06) 0%, transparent 50%);
}

.page-home .home-intro {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.page-home .home-intro__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-dark);
  background: rgba(60, 181, 208, 0.12);
  border: 1px solid rgba(60, 181, 208, 0.25);
  border-radius: 999px;
}

.page-home .home-intro h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.page-home .section-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

/* Prova gratis per 30 giorni */
.page-home .trial-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.5rem auto 0;
  padding: 0.85rem 1.75rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
  background: linear-gradient(135deg, #ffffff 0%, #f0fbfd 100%);
  border: 2px solid var(--theme);
  border-radius: 999px;
  box-shadow:
    0 4px 20px rgba(60, 181, 208, 0.18),
    0 0 0 6px rgba(60, 181, 208, 0.08);
  animation: trial-pulse 3s ease-in-out infinite;
}

.page-home .trial-highlight strong {
  color: var(--theme-dark);
  font-weight: 800;
}

.page-home .trial-highlight__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-dark) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes trial-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(60, 181, 208, 0.18), 0 0 0 6px rgba(60, 181, 208, 0.08); }
  50% { box-shadow: 0 6px 28px rgba(60, 181, 208, 0.28), 0 0 0 10px rgba(60, 181, 208, 0.05); }
}

/* ---- Pricing cards (home) ---- */
.page-home .pricing-grid,
.page-home .pricing-grid--single {
  position: relative;
  z-index: 1;
  gap: 2rem;
  margin-top: 0.5rem;
  grid-template-columns: minmax(280px, 420px);
  justify-content: center;
}

.page-home .pricing-card {
  border-radius: 20px;
  border: 1px solid rgba(60, 181, 208, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-home .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(60, 181, 208, 0.15);
}

.page-home .pricing-card.featured {
  transform: translateY(-14px);
  box-shadow: 0 24px 56px rgba(60, 181, 208, 0.35);
}

.page-home .pricing-card.featured:hover {
  transform: translateY(-18px);
}

.page-home .pricing-card header {
  padding: 2.25rem 1.75rem 1.25rem;
  background: linear-gradient(180deg, rgba(60, 181, 208, 0.04) 0%, transparent 100%);
}

.page-home .pricing-card.featured header {
  background: transparent;
}

.page-home .pricing-card h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.page-home .price {
  font-size: 2.75rem;
  letter-spacing: -0.03em;
}

.page-home .pricing-card ul {
  padding: 1.75rem 1.75rem;
}

.page-home .pricing-card li {
  padding: 0.55rem 0;
  font-size: 0.98rem;
}

.page-home .pricing-card li::before {
  content: "✓";
  color: var(--theme);
  font-weight: 700;
  margin-right: 0.5rem;
}

.page-home .pricing-card.featured li::before {
  color: rgba(255, 255, 255, 0.9);
}

.page-home .pricing-card footer {
  padding: 0 1.75rem 2rem;
}

.page-home .pricing-card .btn {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(60, 181, 208, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.page-home .pricing-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(60, 181, 208, 0.35);
}

.page-home .home-pricing-note {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(60, 181, 208, 0.25);
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .home-pricing-note__ai {
  margin-top: 0.75rem;
  font-size: 0.92rem;
}

.page-home .home-pricing-note__ai a {
  color: var(--theme-dark);
  font-weight: 600;
}

/* ---- VoIP box ---- */
.page-home .home-voip-box {
  position: relative;
  z-index: 1;
  margin-top: 3.5rem;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(60, 181, 208, 0.2);
  background: linear-gradient(145deg, #ffffff 0%, #f8fcfd 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.page-home .home-voip-box__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme-dark);
  background: rgba(60, 181, 208, 0.12);
  border-radius: 6px;
}

.page-home .home-voip-box h3 {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.page-home .voip-option {
  background: var(--white);
  border: 1px solid rgba(60, 181, 208, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.page-home .voip-option:hover {
  border-color: rgba(60, 181, 208, 0.35);
  box-shadow: 0 8px 24px rgba(60, 181, 208, 0.12);
}

/* ---- Features ---- */
.page-home .home-features {
  padding: 5rem 0;
  background: var(--white);
}

.page-home .section-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--theme);
}

.page-home .section-label--light {
  color: rgba(255, 255, 255, 0.65);
}

.page-home .section-title--left {
  text-align: left;
  margin-bottom: 2rem;
}

.page-home .home-features__grid {
  gap: 2rem;
}

.page-home .home-feature-card {
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, #ffffff 0%, #f5fbfc 100%);
  border: 1px solid rgba(60, 181, 208, 0.15);
  border-radius: 20px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(60, 181, 208, 0.12);
}

.page-home .home-feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.page-home .home-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.page-home .home-feature-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* ---- FAQ ---- */
.page-home .home-faq {
  position: relative;
  padding: 5.5rem 0;
  background: linear-gradient(165deg, #eef7fa 0%, #f4f4f4 35%, #f8fcfd 70%, #ffffff 100%);
  overflow: hidden;
}

.page-home .home-faq__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 8% 15%, rgba(60, 181, 208, 0.14) 0%, transparent 35%),
    radial-gradient(circle at 92% 85%, rgba(60, 181, 208, 0.1) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      rgba(60, 181, 208, 0.03) 28px,
      rgba(60, 181, 208, 0.03) 29px
    );
}

.page-home .home-faq__layout {
  position: relative;
  z-index: 1;
  align-items: start;
}

.page-home .home-faq__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.page-home .home-faq__subtitle {
  margin: 0;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.page-home .home-faq__panel {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(60, 181, 208, 0.18);
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.page-home .faq-list {
  gap: 1rem;
}

.page-home .faq-item {
  background: var(--white);
  border: 1px solid rgba(60, 181, 208, 0.14);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    transform 0.3s ease;
}

.page-home .faq-item:hover {
  border-color: rgba(60, 181, 208, 0.28);
  box-shadow: 0 8px 26px rgba(60, 181, 208, 0.1);
}

.page-home .faq-item.open {
  border-color: var(--theme);
  box-shadow:
    0 12px 36px rgba(60, 181, 208, 0.18),
    0 0 0 1px rgba(60, 181, 208, 0.08);
  transform: translateY(-2px);
}

.page-home .faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.25rem 1.35rem;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.page-home .faq-question:hover {
  background: rgba(60, 181, 208, 0.05);
}

.page-home .faq-item.open .faq-question {
  background: linear-gradient(90deg, rgba(60, 181, 208, 0.12) 0%, rgba(60, 181, 208, 0.02) 100%);
  color: var(--theme-dark);
}

.page-home .faq-question .num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--theme) 0%, var(--theme-dark) 100%);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(60, 181, 208, 0.35);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .faq-item.open .faq-question .num {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(60, 181, 208, 0.45);
}

.page-home .faq-question__text {
  padding-right: 0.5rem;
}

.page-home .faq-question__toggle {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(60, 181, 208, 0.1);
  border: 1px solid rgba(60, 181, 208, 0.2);
  transition: background 0.3s ease, transform 0.35s ease, border-color 0.3s ease;
}

.page-home .faq-question__toggle::before,
.page-home .faq-question__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--theme-dark);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.page-home .faq-question__toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.page-home .faq-question__toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.page-home .faq-item.open .faq-question__toggle {
  background: var(--theme);
  border-color: var(--theme);
  transform: rotate(180deg);
}

.page-home .faq-item.open .faq-question__toggle::before,
.page-home .faq-item.open .faq-question__toggle::after {
  background: var(--white);
}

.page-home .faq-item.open .faq-question__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.page-home .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.page-home .faq-answer__inner {
  overflow: hidden;
  padding: 0 1.35rem 0 4.5rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s, padding 0.4s ease;
}

.page-home .faq-item.open .faq-answer__inner {
  padding: 0 1.35rem 1.35rem 4.5rem;
  opacity: 1;
  transform: translateY(0);
  border-top: 1px dashed rgba(60, 181, 208, 0.2);
  margin-top: 0.25rem;
  padding-top: 1rem;
}

.page-home .faq-item.open .faq-answer__inner::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 0.85rem;
  background: linear-gradient(90deg, var(--theme), transparent);
  border-radius: 999px;
}

.page-home .home-side-card {
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.page-home .home-side-card:hover {
  transform: translateY(-4px);
}

.page-home .home-contact-box {
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(60, 181, 208, 0.25);
}

.page-home .home-sidebar {
  position: sticky;
  top: 1.5rem;
}

/* ---- Benefits (stile live centralino-voip.cloud) ---- */
.page-home .home-benefits {
  position: relative;
  padding: 5rem 0 3.5rem;
  background: #282828;
  color: #fff;
  overflow: hidden;
}

.page-home .home-benefits__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(60, 181, 208, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(60, 181, 208, 0.1) 0%, transparent 38%);
  animation: benefits-shine 8s ease-in-out infinite alternate;
}

@keyframes benefits-shine {
  0% { opacity: 0.65; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04); }
}

.page-home .home-benefits .container {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 2rem));
}

.page-home .fancy-heading {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 900px;
}

.page-home .home-benefits__heading.is-visible .fancy-heading__title {
  animation: benefits-title-in 0.7s ease both;
}

.page-home .home-benefits__heading.is-visible .fancy-heading__lead {
  animation: benefits-title-in 0.7s ease 0.1s both;
}

@keyframes benefits-title-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-home .fancy-heading__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.625rem);
  line-height: 1.12;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
}

.page-home .fancy-heading__title .themecolor {
  color: var(--theme);
  font-weight: 500;
}

.page-home .fancy-heading__lead {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: #fff;
  font-weight: 400;
}

.page-home .benefits-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.75rem;
}

.page-home .icon-box {
  position: relative;
  padding: 1.25rem 0.85rem 1.5rem;
  text-align: center;
  border-radius: 18px;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.page-home .icon-box--reveal {
  opacity: 0;
}

.page-home .icon-box--from-left {
  transform: translateX(-28px);
}

.page-home .icon-box--from-right {
  transform: translateX(28px);
}

.page-home .icon-box--from-up {
  transform: translateY(28px);
}

.page-home .icon-box.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition:
    opacity 0.65s ease var(--reveal-delay, 0s),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.page-home .benefits-icon-grid.has-active .icon-box.is-dimmed {
  opacity: 0.55;
  transform: scale(0.98);
}

.page-home .icon-box:hover,
.page-home .icon-box:focus-visible {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.page-home .icon-box.is-active {
  transform: translateY(-10px);
  background: rgba(60, 181, 208, 0.1);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(60, 181, 208, 0.35);
}

.page-home .icon-box:focus-visible {
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(60, 181, 208, 0.45);
}

.page-home .icon-box__wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 8px solid var(--theme);
  background: #fff;
  box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.08);
  color: var(--theme);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.page-home .icon-box__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 181, 208, 0.35) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-home .icon-box__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.page-home .icon-box:hover .icon-box__wrapper,
.page-home .icon-box:focus-visible .icon-box__wrapper {
  transform: scale(0.96);
  box-shadow:
    inset 0 0 7px rgba(0, 0, 0, 0.08),
    0 10px 28px rgba(60, 181, 208, 0.28);
}

.page-home .icon-box:hover .icon-box__glow,
.page-home .icon-box.is-active .icon-box__glow {
  opacity: 1;
  transform: scale(1);
}

.page-home .icon-box.is-active .icon-box__wrapper {
  transform: scale(1.02);
  background: var(--theme);
  border-color: #5fcde3;
  color: #fff;
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.15),
    0 12px 32px rgba(60, 181, 208, 0.45);
}

.page-home .icon-box.is-active .icon-box__wrapper::before {
  border-color: rgba(255, 255, 255, 0.35);
}

.page-home .icon-box__lamp {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  transition: transform 0.35s ease;
}

.page-home .icon-box.is-active .icon-box__lamp {
  animation: lamp-wiggle 0.55s ease;
}

.page-home .icon-box.is-active .icon-box__lamp-bulb {
  fill: rgba(255, 255, 255, 0.2);
}

@keyframes lamp-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}

.page-home .icon-box__desc {
  max-width: 260px;
  margin: 0 auto;
  transition: color 0.3s ease;
}

.page-home .icon-box__desc h4 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  transition: color 0.3s ease;
}

.page-home .icon-box.is-active .icon-box__desc h4 {
  color: #8fe0f0;
}

.page-home .icon-box__desc p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #bbb;
  transition: color 0.3s ease;
}

.page-home .icon-box.is-active .icon-box__desc p {
  color: #e4e4e4;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-benefits__shine {
    animation: none;
  }

  .page-home .icon-box--reveal {
    opacity: 1;
    transform: none;
  }

  .page-home .icon-box.is-active .icon-box__lamp {
    animation: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .page-home .home-sidebar {
    position: static;
  }

  .page-home .pricing-card.featured,
  .page-home .pricing-card.featured:hover {
    transform: none;
  }

  .page-home .pricing-card:hover {
    transform: translateY(-4px);
  }

  .page-home .benefits-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 1.5rem;
  }

  .page-home .icon-box__wrapper {
    width: 100px;
    height: 100px;
  }

  .page-home .icon-box__lamp {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .page-home .section-pricing {
    padding: 3rem 0 3.5rem;
  }

  .page-home .trial-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
  }

  .page-home .home-voip-box {
    padding: 1.75rem;
  }

  .page-home .home-feature-card {
    padding: 1.75rem 1.5rem;
  }

  .page-home .home-benefits {
    padding: 3.5rem 0 2.5rem;
  }

  .page-home .fancy-heading {
    margin-bottom: 2.5rem;
  }

  .page-home .benefits-icon-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-home .icon-box__wrapper {
    width: 110px;
    height: 110px;
  }

  .page-home .icon-box__lamp {
    width: 50px;
    height: 50px;
  }

  .page-home .home-faq__panel {
    padding: 1rem;
    border-radius: 18px;
  }

  .page-home .faq-question {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    padding: 1rem;
    font-size: 0.95rem;
  }

  .page-home .faq-question .num {
    min-width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .page-home .faq-answer__inner,
  .page-home .faq-item.open .faq-answer__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
