:root {
  --fhi-ink: #10231d;
  --fhi-muted: #52645e;
  --fhi-green: #159a68;
  --fhi-green-dark: #08734c;
  --fhi-green-soft: #e9f8f1;
  --fhi-line: #dce7e2;
  --fhi-soft: #f5f8f7;
  --fhi-white: #ffffff;
  --fhi-dark: #102820;
  --fhi-radius-lg: 30px;
  --fhi-radius-md: 20px;
  --fhi-shadow: 0 18px 55px rgba(16, 35, 29, 0.10);
}

body.festara-how-it-works-page {
  background: var(--fhi-white);
}

body.festara-how-it-works-page main,
body.festara-how-it-works-page .wp-site-blocks {
  overflow: clip;
}

.fhi-page,
.fhi-page * {
  box-sizing: border-box;
}

.fhi-page {
  color: var(--fhi-ink);
  font-family: inherit;
  line-height: 1.6;
}

.fhi-page h1,
.fhi-page h2,
.fhi-page h3,
.fhi-page p,
.fhi-page ol,
.fhi-page ul {
  margin-top: 0;
}

.fhi-page h1,
.fhi-page h2,
.fhi-page h3 {
  color: var(--fhi-ink);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.fhi-page h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.3rem);
}

.fhi-page h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.fhi-page h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.fhi-page p {
  color: var(--fhi-muted);
}

.fhi-container {
  width: min(1160px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.fhi-hero {
  position: relative;
  padding: clamp(76px, 10vw, 132px) 0;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(21, 154, 104, 0.18),
      transparent 31%
    ),
    linear-gradient(180deg, #f8fcfa 0%, #ffffff 100%);
}

.fhi-hero::before {
  position: absolute;
  top: 35px;
  right: max(4vw, 24px);
  width: 150px;
  height: 150px;
  border: 1px solid rgba(21, 154, 104, 0.18);
  border-radius: 50%;
  content: "";
}

.fhi-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.75fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.fhi-kicker {
  margin-bottom: 16px;
  color: var(--fhi-green-dark) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fhi-lead {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.fhi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.fhi-button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.fhi-button:hover {
  transform: translateY(-2px);
}

.fhi-button-primary {
  background: var(--fhi-green);
  color: var(--fhi-white);
  box-shadow: 0 10px 26px rgba(21, 154, 104, 0.24);
}

.fhi-button-primary:hover {
  background: var(--fhi-green-dark);
  color: var(--fhi-white);
}

.fhi-button-secondary {
  border-color: var(--fhi-line);
  background: var(--fhi-white);
  color: var(--fhi-ink);
}

.fhi-button-secondary:hover {
  border-color: var(--fhi-green);
  color: var(--fhi-green-dark);
}

.fhi-button:focus-visible,
.fhi-text-link:focus-visible,
.fhi-faq summary:focus-visible {
  outline: 3px solid rgba(21, 154, 104, 0.42);
  outline-offset: 4px;
}

.fhi-hero-summary {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(21, 154, 104, 0.18);
  border-radius: var(--fhi-radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--fhi-shadow);
}

.fhi-summary-label {
  margin-bottom: 22px;
  color: var(--fhi-ink) !important;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fhi-summary-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fhi-summary-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--fhi-line);
  align-items: center;
  color: var(--fhi-ink);
  font-weight: 700;
}

.fhi-summary-list li:first-child {
  border-top: 0;
}

.fhi-summary-list span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  place-items: center;
  background: var(--fhi-green-soft);
  color: var(--fhi-green-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.fhi-section {
  padding: clamp(78px, 10vw, 128px) 0;
}

.fhi-section-soft {
  background: var(--fhi-soft);
}

.fhi-section-dark {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(85, 206, 158, 0.15),
      transparent 34%
    ),
    var(--fhi-dark);
}

.fhi-section-dark h2,
.fhi-section-dark h3 {
  color: var(--fhi-white);
}

.fhi-section-dark p {
  color: rgba(255, 255, 255, 0.73);
}

.fhi-section-dark .fhi-kicker {
  color: #73ddb5 !important;
}

.fhi-section-heading {
  max-width: 790px;
  margin-bottom: clamp(44px, 6vw, 70px);
}

.fhi-section-heading > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.fhi-steps {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fhi-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid var(--fhi-line);
  border-radius: var(--fhi-radius-md);
  background: var(--fhi-white);
  align-items: start;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.fhi-step:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 154, 104, 0.45);
  box-shadow: 0 15px 38px rgba(16, 35, 29, 0.08);
}

.fhi-step p {
  max-width: 790px;
  margin-bottom: 0;
}

.fhi-step-number {
  display: inline-grid;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  place-items: center;
  background: var(--fhi-green-soft);
  color: var(--fhi-green-dark);
  font-size: 0.95rem;
  font-weight: 850;
}

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

.fhi-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fhi-card {
  min-height: 270px;
  padding: 31px;
  border: 1px solid var(--fhi-line);
  border-radius: var(--fhi-radius-md);
  background: var(--fhi-white);
}

.fhi-card-index {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--fhi-green-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.fhi-card p {
  margin-bottom: 0;
}

.fhi-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.fhi-split-copy > p:not(.fhi-kicker) {
  max-width: 540px;
  font-size: 1.08rem;
}

.fhi-text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--fhi-green-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.fhi-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fhi-check-list li {
  position: relative;
  min-height: 86px;
  padding: 23px 21px 21px 58px;
  border: 1px solid var(--fhi-line);
  border-radius: 17px;
  background: var(--fhi-white);
  color: var(--fhi-ink);
  font-weight: 650;
}

.fhi-check-list li::before {
  position: absolute;
  top: 22px;
  left: 20px;
  display: inline-grid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  place-items: center;
  background: var(--fhi-green-soft);
  color: var(--fhi-green-dark);
  content: "✓";
  font-size: 0.82rem;
  font-weight: 900;
}

.fhi-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fhi-audience-card {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--fhi-radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.fhi-audience-card p {
  margin-bottom: 0;
}

.fhi-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.fhi-faq-layout .fhi-section-heading {
  margin-bottom: 0;
}

.fhi-faq-list {
  display: grid;
  gap: 14px;
}

.fhi-faq {
  border: 1px solid var(--fhi-line);
  border-radius: 17px;
  background: var(--fhi-white);
}

.fhi-faq summary {
  position: relative;
  padding: 23px 58px 23px 23px;
  cursor: pointer;
  color: var(--fhi-ink);
  font-weight: 780;
  list-style: none;
}

.fhi-faq summary::-webkit-details-marker {
  display: none;
}

.fhi-faq summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--fhi-green-soft);
  color: var(--fhi-green-dark);
  content: "+";
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 28px;
}

.fhi-faq[open] summary::after {
  content: "−";
}

.fhi-faq p {
  margin: 0;
  padding: 0 23px 24px;
}

.fhi-final-cta {
  padding: 28px 0 clamp(80px, 10vw, 128px);
}

.fhi-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 40px;
  padding: clamp(34px, 6vw, 65px);
  border-radius: var(--fhi-radius-lg);
  background:
    radial-gradient(
      circle at 92% 5%,
      rgba(115, 221, 181, 0.18),
      transparent 34%
    ),
    var(--fhi-dark);
  align-items: center;
}

.fhi-final-cta h2 {
  max-width: 760px;
  margin-bottom: 15px;
  color: var(--fhi-white);
}

.fhi-final-cta p:not(.fhi-kicker) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.fhi-final-cta .fhi-button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--fhi-white);
}

.fhi-final-cta .fhi-button-secondary:hover {
  border-color: var(--fhi-white);
  color: var(--fhi-white);
}

@media (max-width: 900px) {
  .fhi-hero-grid,
  .fhi-split,
  .fhi-faq-layout,
  .fhi-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .fhi-card-grid-three {
    grid-template-columns: 1fr;
  }

  .fhi-card {
    min-height: auto;
  }

  .fhi-card-index {
    margin-bottom: 25px;
  }

  .fhi-final-cta-inner {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .fhi-container {
    width: min(100% - 28px, 1160px);
  }

  .fhi-hero {
    padding: 68px 0 78px;
  }

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

  .fhi-page h1 {
    font-size: clamp(2.3rem, 12vw, 3.35rem);
  }

  .fhi-page h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .fhi-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fhi-button {
    width: 100%;
  }

  .fhi-hero-summary {
    padding: 24px;
    border-radius: 22px;
  }

  .fhi-section {
    padding: 72px 0;
  }

  .fhi-step {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .fhi-step-number {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .fhi-check-list,
  .fhi-audience-grid {
    grid-template-columns: 1fr;
  }

  .fhi-check-list li {
    min-height: 0;
  }

  .fhi-final-cta {
    padding-top: 12px;
  }

  .fhi-final-cta-inner {
    padding: 32px 24px;
    border-radius: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fhi-button,
  .fhi-step {
    transition: none;
  }

  .fhi-button:hover,
  .fhi-step:hover {
    transform: none;
  }
}

/* ==================================================================
   FESTARA — BLOQUE 10.44 A9-A4-R3
   Template público, logo, navegación, ancho desktop y footer.
   ================================================================== */

html {
  scroll-behavior: smooth;
}

body.festara-how-it-works-page {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
}

body.festara-how-it-works-page.admin-bar .fhi-site-header {
  top: 32px;
}

.fhi-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: #10231d;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.fhi-skip-link:focus {
  transform: translateY(0);
}

.fhi-site-shell {
  width: min(1160px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.fhi-site-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  border-bottom: 1px solid rgba(16, 35, 29, 0.09);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 7px 25px rgba(16, 35, 29, 0.055);
  backdrop-filter: blur(16px);
}

.fhi-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 28px;
  min-height: 82px;
  align-items: center;
}

.fhi-brand,
.fhi-footer-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  text-decoration: none;
}

.fhi-brand img,
.fhi-footer-logo img {
  display: block;
  width: 172px;
  max-width: 100%;
  height: auto;
}

.fhi-desktop-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 32px);
  align-items: center;
  justify-content: center;
}

.fhi-desktop-nav a,
.fhi-header-login {
  position: relative;
  color: #263c35;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.fhi-desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: #159a68;
  content: "";
  transition: transform 160ms ease;
}

.fhi-desktop-nav a:hover::after,
.fhi-desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.fhi-desktop-nav a.is-current {
  color: #08734c;
}

.fhi-header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.fhi-header-login {
  padding: 11px 3px;
}

.fhi-header-login:hover {
  color: #08734c;
}

.fhi-header-cta,
.fhi-mobile-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #159a68;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 9px 24px rgba(21, 154, 104, 0.2);
}

.fhi-header-cta:hover,
.fhi-mobile-cta:hover {
  background: #08734c;
  color: #ffffff;
}

.fhi-mobile-menu {
  display: none;
}

.fhi-site-main,
.fhi-site-main > .fhi-page,
.fhi-page {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.fhi-site-main {
  overflow: hidden;
}

.fhi-page .fhi-container {
  width: min(1160px, calc(100% - 48px));
  max-width: none;
}

.fhi-hero {
  display: flex;
  min-height: 660px;
  align-items: center;
}

.fhi-hero-grid {
  grid-template-columns:
    minmax(0, 1.34fr)
    minmax(340px, 0.66fr);
}

.fhi-hero-copy,
.fhi-hero-summary,
.fhi-step > div,
.fhi-card,
.fhi-split > *,
.fhi-faq-layout > *,
.fhi-final-cta-inner > * {
  min-width: 0;
}

.fhi-page h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 5.2vw, 4.85rem);
}

.fhi-page h2 {
  max-width: 900px;
}

.fhi-step {
  grid-template-columns: 76px minmax(0, 1fr);
}

.fhi-step h3,
.fhi-step p,
.fhi-card h3,
.fhi-card p,
.fhi-audience-card h3,
.fhi-audience-card p {
  overflow-wrap: normal;
  word-break: normal;
}

.fhi-final-cta-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.fhi-final-cta .fhi-actions {
  min-width: 245px;
  align-items: stretch;
  flex-direction: column;
}

.fhi-final-cta .fhi-button {
  width: 100%;
  white-space: nowrap;
}

.fhi-site-footer {
  padding: 82px 0 26px;
  border-top: 1px solid rgba(16, 35, 29, 0.1);
  background:
    linear-gradient(
      180deg,
      #f7faf8 0%,
      #ffffff 100%
    );
  color: #10231d;
}

.fhi-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 0.85fr)
    minmax(0, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.fhi-footer-brand p {
  max-width: 420px;
  margin: 24px 0 0;
  color: #52645e;
  font-size: 1rem;
  line-height: 1.7;
}

.fhi-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.fhi-footer-nav > div {
  display: grid;
  gap: 12px;
  align-content: start;
}

.fhi-footer-title {
  margin: 0 0 7px;
  color: #10231d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fhi-footer-nav a {
  color: #52645e;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
}

.fhi-footer-nav a:hover {
  color: #08734c;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fhi-footer-bottom {
  display: flex;
  gap: 25px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 35, 29, 0.1);
  align-items: center;
  justify-content: space-between;
}

.fhi-footer-bottom p {
  margin: 0;
  color: #718079;
  font-size: 0.82rem;
}

.fhi-brand:focus-visible,
.fhi-desktop-nav a:focus-visible,
.fhi-header-login:focus-visible,
.fhi-header-cta:focus-visible,
.fhi-footer-logo:focus-visible,
.fhi-footer-nav a:focus-visible,
.fhi-mobile-menu summary:focus-visible,
.fhi-mobile-panel a:focus-visible {
  outline: 3px solid rgba(21, 154, 104, 0.42);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .fhi-header-inner {
    grid-template-columns: 165px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .fhi-brand img {
    width: 150px;
  }

  .fhi-desktop-nav {
    gap: 16px;
  }

  .fhi-desktop-nav a,
  .fhi-header-login {
    font-size: 0.88rem;
  }

  .fhi-header-cta {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.86rem;
  }
}

@media (max-width: 900px) {
  body.festara-how-it-works-page.admin-bar .fhi-site-header {
    top: 46px;
  }

  .fhi-site-shell,
  .fhi-page .fhi-container {
    width: min(100% - 32px, 1160px);
  }

  .fhi-header-inner {
    display: flex;
    min-height: 74px;
    gap: 18px;
    justify-content: space-between;
  }

  .fhi-brand img {
    width: 150px;
  }

  .fhi-desktop-nav,
  .fhi-header-actions {
    display: none;
  }

  .fhi-mobile-menu {
    display: block;
    margin-left: auto;
  }

  .fhi-mobile-menu summary {
    display: grid;
    width: 46px;
    height: 46px;
    cursor: pointer;
    border: 1px solid #dce7e2;
    border-radius: 14px;
    place-items: center;
    background: #ffffff;
    list-style: none;
  }

  .fhi-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .fhi-menu-icon {
    display: grid;
    gap: 5px;
    width: 21px;
  }

  .fhi-menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #10231d;
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

  .fhi-mobile-menu[open] .fhi-menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .fhi-mobile-menu[open] .fhi-menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .fhi-mobile-menu[open] .fhi-menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .fhi-mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 9995;
    padding: 18px;
    border: 1px solid #dce7e2;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 24px 65px rgba(16, 35, 29, 0.18);
  }

  .fhi-mobile-panel nav {
    display: grid;
  }

  .fhi-mobile-panel nav a {
    padding: 15px 13px;
    border-bottom: 1px solid #edf2ef;
    color: #263c35;
    font-size: 1rem;
    font-weight: 720;
    text-decoration: none;
  }

  .fhi-mobile-panel nav a:last-child {
    border-bottom: 0;
  }

  .fhi-mobile-panel nav a.is-current {
    border-radius: 12px;
    background: #e9f8f1;
    color: #08734c;
  }

  .fhi-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 16px;
  }

  .fhi-mobile-login {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 14px;
    border: 1px solid #dce7e2;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    color: #10231d;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
  }

  .fhi-hero {
    min-height: auto;
  }

  .fhi-hero-grid,
  .fhi-split,
  .fhi-faq-layout,
  .fhi-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .fhi-final-cta .fhi-actions {
    min-width: 0;
  }

  .fhi-footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  body.festara-how-it-works-page.admin-bar .fhi-site-header {
    top: 0;
  }

  .fhi-site-shell,
  .fhi-page .fhi-container {
    width: min(100% - 28px, 1160px);
  }

  .fhi-header-inner {
    min-height: 70px;
  }

  .fhi-brand img {
    width: 138px;
  }

  .fhi-mobile-panel {
    top: calc(100% + 8px);
    padding: 14px;
    border-radius: 18px;
  }

  .fhi-mobile-actions {
    grid-template-columns: 1fr;
  }

  .fhi-page h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .fhi-page h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .fhi-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .fhi-footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .fhi-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fhi-desktop-nav a::after,
  .fhi-menu-icon span {
    transition: none;
  }
}

/* FESTARA — BLOQUE 10.44 A9-A4-R4 */

.fhi-steps {
  width: 100%;
  max-width: none;
}

.fhi-step {
  display: flex;
  width: 100%;
  max-width: none;
  gap: 26px;
  align-items: flex-start;
}

.fhi-step-number {
  flex: 0 0 62px;
}

.fhi-step > div {
  flex: 1 1 auto;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
}

.fhi-step > div > *,
.fhi-step h3,
.fhi-step p {
  width: auto;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  overflow-wrap: normal;
  word-break: normal;
}

.fhi-step p {
  max-width: 840px !important;
}

.fhi-footer-bottom {
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .fhi-step {
    display: block;
    padding: 26px;
  }

  .fhi-step-number {
    display: inline-grid;
    margin-bottom: 28px;
  }

  .fhi-step > div,
  .fhi-step > div > *,
  .fhi-step h3,
  .fhi-step p {
    width: 100% !important;
    max-width: none !important;
  }
}
