/*
 * Home Italy .Org — Network Restyle P02
 * Build: 2026-08-01
 * Scope: palette coordinated with the institutional Home Italy poster.
 * Base layout: P01. No authentication, SSO, PHP or database logic changed.
 */

:root {
  /* Palette extracted from the approved Home Italy poster. */
  --hi-navy-950: #031a32;
  --hi-navy-900: #08243f;
  --hi-navy-800: #0d3657;
  --hi-navy-700: #174a6d;
  --hi-gold: #c58a2b;
  --hi-gold-dark: #a96f1d;
  --hi-gold-light: #e4bf72;
  --hi-gold-soft: #f6e8c9;
  --hi-italy-green: #16824b;
  --hi-italy-red: #c93642;

  /* Compatibility aliases used by the P01 components. */
  --hi-green-950: var(--hi-navy-950);
  --hi-green-900: var(--hi-navy-900);
  --hi-green-800: var(--hi-navy-800);
  --hi-green-700: var(--hi-gold);
  --hi-green-600: var(--hi-gold-dark);
  --hi-green-100: var(--hi-gold-soft);
  --hi-green-50: #fff5df;

  --hi-cream: #f8f1e7;
  --hi-paper: #fffaf3;
  --hi-white: #ffffff;
  --hi-ink: #10243a;
  --hi-muted: #667383;
  --hi-border: rgba(3, 26, 50, .13);

  /* Portal identities remain recognizable, but more muted. */
  --hi-event: #8f3f86;
  --hi-event-soft: #f4e7f1;
  --hi-vetrina: #c58a2b;
  --hi-vetrina-soft: #f8ecd5;
  --hi-ospitalyty: #15788c;
  --hi-ospitalyty-soft: #e3f1f4;

  --hi-shadow-sm: 0 10px 30px rgba(3, 26, 50, .08);
  --hi-shadow-md: 0 24px 60px rgba(3, 26, 50, .15);
  --hi-radius-sm: 16px;
  --hi-radius-md: 24px;
  --hi-radius-lg: 34px;
  --hi-shell: 1380px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--hi-ink);
  background: var(--hi-cream);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body.hi-home-page {
  background:
    radial-gradient(circle at 4% 10%, rgba(22, 130, 75, .08), transparent 27rem),
    radial-gradient(circle at 96% 16%, rgba(201, 54, 66, .065), transparent 25rem),
    linear-gradient(180deg, #fffaf3 0%, var(--hi-cream) 52%, #f5ede2 100%);
}

img,
svg,
video {
  max-width: 100%;
}

/* ---------- Shared buttons ---------- */
.hi-btn-primary {
  border: 1px solid var(--hi-green-700);
  background: var(--hi-gold);
  color: var(--hi-navy-950);
  font-weight: 850;
  box-shadow: 0 10px 25px rgba(197, 138, 43, .24);
}

.hi-btn-primary:hover,
.hi-btn-primary:focus {
  border-color: var(--hi-gold-dark);
  background: var(--hi-gold-light);
  color: var(--hi-navy-950);
  transform: translateY(-1px);
}

.hi-btn-light {
  border: 1px solid rgba(255, 255, 255, .8);
  background: #fff;
  color: var(--hi-green-900);
  font-weight: 800;
}

.hi-btn-light:hover,
.hi-btn-light:focus {
  border-color: #fff;
  background: var(--hi-green-50);
  color: var(--hi-green-950);
}

.hi-btn-dark {
  border: 1px solid var(--hi-green-950);
  background: var(--hi-green-950);
  color: #fff;
  font-weight: 800;
}

.hi-btn-dark:hover,
.hi-btn-dark:focus {
  background: #061427;
  color: #fff;
}

.hi-btn-outline,
.hi-btn-outline-dark {
  border: 1px solid rgba(3, 26, 50, .28);
  background: transparent;
  color: var(--hi-green-900);
  font-weight: 800;
}

.hi-btn-outline:hover,
.hi-btn-outline:focus,
.hi-btn-outline-dark:hover,
.hi-btn-outline-dark:focus {
  border-color: var(--hi-green-700);
  background: var(--hi-green-50);
  color: var(--hi-green-900);
}

.hi-btn-ghost {
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hi-btn-ghost:hover,
.hi-btn-ghost:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

/* ---------- Header ---------- */
.hi-site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--hi-border);
  background: rgba(255, 250, 243, .97);
  box-shadow: 0 8px 30px rgba(3, 26, 50, .07);
}

.hi-site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg,
    var(--hi-italy-green) 0 33.333%,
    #f7f1e7 33.333% 66.666%,
    var(--hi-italy-red) 66.666% 100%);
}

.hi-header-shell {
  width: min(100%, var(--hi-shell));
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 38px);
}

.hi-network-strip {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: var(--hi-green-950);
  color: #fff;
}

.hi-network-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hi-network-label {
  color: rgba(255, 255, 255, .66);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hi-network-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.hi-network-links::-webkit-scrollbar {
  display: none;
}

.hi-network-links a {
  position: relative;
  padding: .48rem .68rem;
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.hi-network-links a:hover,
.hi-network-links a:focus,
.hi-network-links a.is-current {
  color: #fff;
}

.hi-network-links a.is-current::after {
  content: "";
  position: absolute;
  right: .68rem;
  bottom: .18rem;
  left: .68rem;
  height: 2px;
  border-radius: 999px;
  background: var(--hi-gold);
}

.hi-header-main {
  background: rgba(255, 250, 243, .97);
}

.hi-site-header .navbar {
  min-height: 92px;
}

.hi-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  min-width: 0;
  color: var(--hi-navy-950);
  text-decoration: none;
}

.hi-brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 8px 13px rgba(3, 26, 50, .14));
}

.hi-brand-copy {
  display: grid;
  line-height: 1;
}

.hi-brand-copy strong {
  color: var(--hi-navy-950);
  font-size: clamp(.94rem, 1.25vw, 1.15rem);
  font-weight: 900;
  letter-spacing: .035em;
  white-space: nowrap;
}

.hi-brand:hover .hi-brand-copy strong,
.hi-brand:focus .hi-brand-copy strong {
  color: var(--hi-gold-dark);
}

.hi-site-header .nav-link {
  border-radius: 999px;
  color: #24374a;
  font-size: .92rem;
  font-weight: 720;
  padding: .58rem .72rem !important;
}

.hi-site-header .nav-link:hover,
.hi-site-header .nav-link:focus,
.hi-site-header .nav-link.active {
  background: var(--hi-green-50);
  color: var(--hi-green-800);
}

.hi-site-header .dropdown-menu {
  padding: .55rem;
  border: 1px solid var(--hi-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--hi-shadow-md);
}

.hi-site-header .dropdown-item {
  border-radius: 10px;
  padding: .62rem .72rem;
  font-size: .9rem;
}

.hi-site-header .dropdown-item:hover,
.hi-site-header .dropdown-item:focus {
  background: var(--hi-green-50);
  color: var(--hi-green-800);
}

.hi-account-nav {
  white-space: nowrap;
}

.hi-login-link {
  color: var(--hi-green-800) !important;
}

.hi-user-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 38px;
  padding: .35rem .7rem .35rem .38rem;
  border: 1px solid var(--hi-border);
  border-radius: 999px;
  color: var(--hi-green-900);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  background: #fff;
}

.hi-user-pill:hover,
.hi-user-pill:focus,
.hi-user-pill.active {
  border-color: rgba(197, 138, 43, .34);
  background: var(--hi-green-50);
  color: var(--hi-green-900);
}

.hi-user-avatar {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--hi-gold);
  color: var(--hi-navy-950);
  font-size: .78rem;
}

.hi-translate-row {
  display: flex;
  justify-content: flex-end;
  min-height: 0;
  padding-bottom: .35rem;
}

/* ---------- Homepage frame ---------- */
.hi-main-home {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hi-home-shell {
  width: min(100%, var(--hi-shell));
  margin-inline: auto;
  padding: clamp(22px, 4vw, 56px) clamp(16px, 3vw, 38px) clamp(60px, 7vw, 100px);
}

.hi-home-shell,
.hi-home-shell * {
  box-sizing: border-box;
}

.hi-kicker {
  margin-bottom: .9rem;
  color: rgba(255, 255, 255, .70);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hi-kicker-green {
  color: var(--hi-green-700);
}

.hi-kicker-dark {
  color: rgba(3, 26, 50, .62);
}

/* ---------- Hero ---------- */
.hi-hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--hi-radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(228, 191, 114, .24), transparent 19rem),
    radial-gradient(circle at 4% 96%, rgba(22, 130, 75, .18), transparent 24rem),
    radial-gradient(circle at 98% 96%, rgba(201, 54, 66, .13), transparent 22rem),
    linear-gradient(135deg, #031a32 0%, #082b4b 52%, #0d3657 100%);
  box-shadow: var(--hi-shadow-md);
}

.hi-hero::before,
.hi-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hi-hero::before {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: -220px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .015);
}

.hi-hero::after {
  width: 200px;
  height: 200px;
  left: -90px;
  top: -90px;
  background: rgba(255, 255, 255, .04);
  filter: blur(2px);
}

.hi-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(42px, 6vw, 82px);
}

.hi-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hi-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.85rem, 5.8vw, 5.7rem);
  font-weight: 880;
  letter-spacing: -.055em;
  line-height: .95;
}

.hi-hero h1 span {
  color: #e4bf72;
}

.hi-hero-lead {
  max-width: 720px;
  margin: 1.7rem 0 .75rem;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 680;
  line-height: 1.45;
}

.hi-hero-text {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hi-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.hi-hero-actions .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-inline: 1.25rem;
}

.hi-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.2rem;
}

.hi-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .56rem .78rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .76);
  font-size: .82rem;
  font-weight: 700;
}

.hi-hero-proof strong {
  color: #e4bf72;
  font-size: 1rem;
}

.hi-hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 490px;
}

.hi-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hi-orbit-one {
  width: 400px;
  height: 400px;
}

.hi-orbit-two {
  width: 300px;
  height: 300px;
  border-style: dashed;
  opacity: .7;
}

.hi-hub-card,
.hi-orbit-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .19);
  backdrop-filter: blur(12px);
}

.hi-hub-card {
  left: 50%;
  top: 50%;
  width: 235px;
  min-height: 190px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 32px;
  background: rgba(255, 255, 255, .93);
  color: var(--hi-green-950);
  transform: translate(-50%, -50%);
}

.hi-hub-mark,
.hi-orbit-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.hi-hub-mark {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  background: var(--hi-gold);
  color: var(--hi-navy-950);
}

.hi-hub-card strong {
  font-size: 1.25rem;
}

.hi-hub-card small {
  margin-top: .35rem;
  color: var(--hi-muted);
  line-height: 1.45;
}

.hi-orbit-card {
  width: 190px;
  min-height: 125px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 24px;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}

.hi-orbit-card:hover,
.hi-orbit-card:focus {
  color: #fff;
  transform: translateY(-4px);
}

.hi-orbit-card > span {
  width: 36px;
  height: 36px;
  margin-bottom: .55rem;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: .82rem;
}

.hi-orbit-card strong {
  font-size: 1rem;
}

.hi-orbit-card small {
  margin-top: .2rem;
  color: rgba(255, 255, 255, .74);
  font-size: .75rem;
}

.hi-orbit-event {
  left: 2%;
  top: 7%;
  background: linear-gradient(135deg, rgba(155, 61, 200, .88), rgba(86, 40, 120, .85));
}

.hi-orbit-vetrina {
  right: 0;
  top: 18%;
  background: linear-gradient(135deg, rgba(213, 123, 34, .93), rgba(134, 68, 14, .88));
}

.hi-orbit-ospitalyty {
  left: 13%;
  bottom: 4%;
  background: linear-gradient(135deg, rgba(22, 118, 167, .92), rgba(12, 71, 104, .9));
}

/* ---------- Campaign ---------- */
.hi-campaign {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(30px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(197, 138, 43, .36);
  border-radius: var(--hi-radius-lg);
  background:
    radial-gradient(circle at 91% 10%, rgba(255, 255, 255, .86), transparent 16rem),
    radial-gradient(circle at 7% 100%, rgba(22, 130, 75, .09), transparent 18rem),
    linear-gradient(135deg, #e6c77f, #fff4d9 54%, #f7eee3);
  box-shadow: var(--hi-shadow-sm);
}

.hi-campaign::after {
  content: "1000";
  position: absolute;
  right: -1.2rem;
  bottom: -3.5rem;
  color: rgba(3, 26, 50, .045);
  font-size: clamp(8rem, 17vw, 15rem);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.hi-campaign-copy,
.hi-campaign-meter {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hi-campaign h2 {
  max-width: 820px;
  margin: 0;
  color: var(--hi-green-950);
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 880;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.hi-campaign-copy > p {
  max-width: 760px;
  margin: 1.1rem 0 0;
  color: rgba(3, 26, 50, .78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hi-campaign-code-row,
.hi-campaign-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
}

.hi-campaign-code-row {
  margin-top: 1.5rem;
}

.hi-campaign-code {
  padding: .78rem 1rem;
  border: 2px dashed rgba(3, 26, 50, .38);
  border-radius: 15px;
  background: rgba(255, 255, 255, .72);
  color: var(--hi-green-950);
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  font-weight: 900;
  letter-spacing: .07em;
}

.hi-campaign-actions {
  margin-top: 1.25rem;
}

.hi-campaign-copy > small {
  display: block;
  margin-top: 1rem;
  color: rgba(3, 26, 50, .66);
}

.hi-campaign-meter {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  text-align: center;
  box-shadow: 0 18px 40px rgba(3, 26, 50, .10);
  backdrop-filter: blur(8px);
}

.hi-campaign-meter > span {
  color: var(--hi-green-800);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hi-campaign-meter strong {
  margin: .6rem 0 .35rem;
  color: var(--hi-green-950);
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .9;
}

.hi-campaign-meter small {
  color: var(--hi-muted);
}

.hi-progress {
  width: 100%;
  height: 9px;
  margin: 1.3rem 0 .7rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(3, 26, 50, .10);
}

.hi-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hi-italy-green), var(--hi-gold) 62%, var(--hi-italy-red));
}

/* ---------- Shared sections ---------- */
.hi-section {
  margin-top: clamp(62px, 8vw, 118px);
}

.hi-section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.hi-section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.hi-section-heading-row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.hi-section-heading h2,
.hi-points h2,
.hi-community h2 {
  margin: 0;
  color: var(--hi-green-950);
  font-size: clamp(2rem, 4.3vw, 4.15rem);
  font-weight: 880;
  letter-spacing: -.048em;
  line-height: 1.02;
}

.hi-section-heading p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--hi-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hi-section-heading-centered p {
  margin-inline: auto;
}

/* ---------- Network ---------- */
.hi-network-layout {
  display: grid;
  grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.hi-network-hub,
.hi-portal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hi-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--hi-shadow-sm);
}

.hi-network-hub {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 4vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(228, 191, 114, .22), transparent 15rem),
    radial-gradient(circle at 2% 100%, rgba(22, 130, 75, .10), transparent 18rem),
    linear-gradient(145deg, var(--hi-navy-950), var(--hi-navy-800));
}

.hi-network-hub::after {
  content: "HI";
  position: absolute;
  right: -1.5rem;
  bottom: -4.2rem;
  color: rgba(255, 255, 255, .05);
  font-size: clamp(11rem, 20vw, 18rem);
  font-weight: 950;
  letter-spacing: -.12em;
  line-height: 1;
  pointer-events: none;
}

.hi-network-status {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hi-network-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hi-italy-green);
  box-shadow: 0 0 0 5px rgba(22, 130, 75, .14);
}

.hi-network-logo {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-size: 1.35rem;
  font-weight: 950;
}

.hi-network-logo-home {
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.hi-network-hub h3 {
  margin: 1.35rem 0 .7rem;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 880;
  letter-spacing: -.05em;
}

.hi-network-hub p {
  max-width: 540px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hi-network-hub ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem 1rem;
  width: 100%;
  margin: 1.2rem 0 2rem;
  padding: 0;
  list-style: none;
}

.hi-network-hub li {
  position: relative;
  padding-left: 1.3rem;
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
}

.hi-network-hub li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hi-gold);
}

.hi-network-hub .btn {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-color: #fff;
  background: #fff;
  color: var(--hi-navy-950);
  box-shadow: none;
}

.hi-network-portals {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hi-portal-card {
  display: grid;
  grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(24px, 3vw, 34px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hi-portal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hi-shadow-md);
}

.hi-portal-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
}

.hi-portal-card .hi-network-status {
  position: absolute;
  right: 1.4rem;
  top: 1rem;
  margin: 0;
  color: var(--hi-muted);
  letter-spacing: .04em;
}

.hi-portal-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.hi-portal-head > span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 950;
}

.hi-portal-head h3 {
  margin: 0;
  color: var(--hi-green-950);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 850;
  letter-spacing: -.03em;
}

.hi-portal-head small {
  color: var(--hi-muted);
}

.hi-portal-card > p {
  margin: 0;
  color: var(--hi-muted);
  line-height: 1.62;
}

.hi-portal-card > a {
  color: var(--hi-green-900);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.hi-portal-card > a:hover,
.hi-portal-card > a:focus {
  text-decoration: underline;
}

.hi-portal-event::before { background: var(--hi-event); }
.hi-portal-event .hi-portal-head > span { background: var(--hi-event-soft); color: var(--hi-event); }
.hi-portal-vetrina::before { background: var(--hi-vetrina); }
.hi-portal-vetrina .hi-portal-head > span { background: var(--hi-vetrina-soft); color: var(--hi-vetrina); }
.hi-portal-ospitalyty::before { background: var(--hi-ospitalyty); }
.hi-portal-ospitalyty .hi-portal-head > span { background: var(--hi-ospitalyty-soft); color: var(--hi-ospitalyty); }

/* ---------- Benefits ---------- */
.hi-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hi-benefit-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--hi-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 12px 35px rgba(3, 26, 50, .06);
  transition: transform .2s ease, background .2s ease;
}

.hi-benefit-grid article:hover {
  transform: translateY(-3px);
  background: #fff;
}

.hi-benefit-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--hi-green-50);
  color: var(--hi-green-700);
  font-size: .78rem;
  font-weight: 900;
}

.hi-benefit-grid h3 {
  margin: 1.4rem 0 .65rem;
  color: var(--hi-green-950);
  font-size: 1.25rem;
  font-weight: 850;
}

.hi-benefit-grid p {
  margin: 0;
  color: var(--hi-muted);
  line-height: 1.65;
}

/* ---------- Steps ---------- */
.hi-how {
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--hi-border);
  border-radius: var(--hi-radius-lg);
  background: #fff;
  box-shadow: var(--hi-shadow-sm);
}

.hi-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hi-steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  padding: 1rem clamp(15px, 2vw, 28px);
}

.hi-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 2.2rem;
  width: 22px;
  height: 1px;
  background: rgba(197, 138, 43, .32);
}

.hi-steps li > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--hi-gold);
  color: var(--hi-navy-950);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(197, 138, 43, .22);
}

.hi-steps h3 {
  margin: .1rem 0 .45rem;
  color: var(--hi-green-950);
  font-size: 1.12rem;
  font-weight: 850;
}

.hi-steps p {
  margin: 0;
  color: var(--hi-muted);
  font-size: .92rem;
  line-height: 1.6;
}

/* ---------- Points ---------- */
.hi-points {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 78px);
  margin-top: clamp(62px, 8vw, 118px);
  padding: clamp(38px, 6vw, 76px);
  border-radius: var(--hi-radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 95% 12%, rgba(228, 191, 114, .20), transparent 22rem),
    radial-gradient(circle at 0% 100%, rgba(22, 130, 75, .12), transparent 20rem),
    linear-gradient(135deg, var(--hi-navy-950), var(--hi-navy-800));
  box-shadow: var(--hi-shadow-md);
}

.hi-points h2 {
  color: #fff;
}

.hi-points-copy > p {
  margin: 1.2rem 0 1.7rem;
  color: rgba(255, 255, 255, .76);
  font-size: 1.03rem;
  line-height: 1.72;
}

.hi-points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hi-points-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .065);
}

.hi-points-grid strong {
  display: block;
  color: #e4bf72;
  font-size: 1rem;
}

.hi-points-grid p {
  margin: .55rem 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  line-height: 1.55;
}

/* ---------- Events ---------- */
.hi-events-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 20px;
}

.hi-event-featured,
.hi-event-compact,
.hi-event-network-card,
.hi-empty-state {
  border: 1px solid var(--hi-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--hi-shadow-sm);
}

.hi-event-featured {
  overflow: hidden;
}

.hi-event-image-wrap {
  aspect-ratio: 16 / 8.3;
  overflow: hidden;
  background: #f4efe7;
}

.hi-event-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.hi-event-content {
  padding: clamp(24px, 3vw, 38px);
}

.hi-event-date {
  color: var(--hi-green-700);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hi-event-content h3 {
  margin: .65rem 0 .4rem;
  color: var(--hi-green-950);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 870;
  letter-spacing: -.04em;
}

.hi-event-place {
  margin: 0;
  color: var(--hi-muted);
}

.hi-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}

.hi-event-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hi-event-compact {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
}

.hi-event-compact img {
  width: 120px;
  height: 100%;
  min-height: 145px;
  object-fit: contain;
  padding: .7rem;
  background: #f6f1e9;
}

.hi-event-compact > div {
  min-width: 0;
  padding: 18px;
}

.hi-event-compact h3 {
  margin: .45rem 0 .3rem;
  color: var(--hi-green-950);
  font-size: 1.03rem;
  font-weight: 850;
}

.hi-event-compact p {
  margin: 0 0 .5rem;
  color: var(--hi-muted);
  font-size: .82rem;
}

.hi-event-compact a,
.hi-event-network-card a {
  color: var(--hi-green-700);
  font-size: .88rem;
  font-weight: 850;
  text-decoration: none;
}

.hi-event-network-card {
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #6f2d93, var(--hi-event));
}

.hi-event-network-card > span {
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hi-event-network-card h3 {
  margin: .65rem 0 .45rem;
  font-size: 1.25rem;
  font-weight: 850;
}

.hi-event-network-card p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
}

.hi-event-network-card a {
  color: #fff;
}

.hi-empty-state {
  padding: clamp(34px, 5vw, 68px);
  text-align: center;
}

.hi-empty-state > div span {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: var(--hi-event-soft);
  color: var(--hi-event);
  font-weight: 950;
}

.hi-empty-state h3 {
  margin: 1.2rem 0 .5rem;
  color: var(--hi-green-950);
  font-size: 1.8rem;
  font-weight: 850;
}

.hi-empty-state p {
  color: var(--hi-muted);
}

/* ---------- Discover ---------- */
.hi-discover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hi-discover-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--hi-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--hi-shadow-sm);
}

.hi-discover-card > img,
.hi-discover-ospitalyty-visual {
  width: 100%;
  height: 255px;
  object-fit: contain;
  padding: 1rem;
  background: #f6f1e9;
}

.hi-discover-card > div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.hi-discover-card > div:last-child > span {
  color: var(--hi-green-700);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hi-discover-card h3 {
  margin: .8rem 0 .6rem;
  color: var(--hi-green-950);
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -.03em;
}

.hi-discover-card p {
  color: var(--hi-muted);
  line-height: 1.65;
}

.hi-discover-card a {
  margin-top: auto;
  color: var(--hi-green-700);
  font-weight: 850;
  text-decoration: none;
}

.hi-discover-ospitalyty-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, .3), transparent 9rem),
    linear-gradient(135deg, #0e5d87, #1685b9);
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 880;
  letter-spacing: -.05em;
}

.hi-discover-ospitalyty-visual strong {
  color: #e4bf72;
}

/* ---------- Community ---------- */
.hi-community {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: clamp(28px, 5vw, 74px);
  margin-top: clamp(62px, 8vw, 118px);
  padding: clamp(40px, 6vw, 78px);
  border-radius: var(--hi-radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(228, 191, 114, .20), transparent 20rem),
    radial-gradient(circle at 0% 100%, rgba(201, 54, 66, .09), transparent 20rem),
    linear-gradient(135deg, #031a32, #0d3657);
  box-shadow: var(--hi-shadow-md);
}

.hi-community h2 {
  color: #fff;
}

.hi-community-copy > p {
  max-width: 680px;
  margin: 1.2rem 0 1.7rem;
  color: rgba(255, 255, 255, .76);
  font-size: 1.03rem;
  line-height: 1.72;
}

.hi-community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.hi-community-links {
  display: grid;
  gap: 12px;
}

.hi-community-links a {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 21px 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .065);
  color: #fff;
  text-decoration: none;
}

.hi-community-links a:hover,
.hi-community-links a:focus {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .10);
}

.hi-community-links span {
  color: rgba(255, 255, 255, .63);
  font-size: .76rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hi-community-links strong {
  font-size: 1.02rem;
}

/* ---------- Footer ---------- */
.hi-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(228, 191, 114, .16), transparent 25rem),
    radial-gradient(circle at 2% 100%, rgba(22, 130, 75, .10), transparent 22rem),
    linear-gradient(135deg, #021326, #062846);
  color: #fff;
}

.hi-footer-shell {
  width: min(100%, var(--hi-shell));
  margin-inline: auto;
  padding: clamp(44px, 6vw, 76px) clamp(16px, 3vw, 38px) 24px;
}

.hi-footer-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .06);
}

.hi-footer-kicker {
  margin-bottom: .5rem;
  color: var(--hi-gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hi-footer-network h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.5vw, 3rem);
  font-weight: 870;
  letter-spacing: -.04em;
}

.hi-footer-network p {
  margin: .65rem 0 0;
  color: rgba(255, 255, 255, .68);
}

.hi-footer-network-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .65rem;
}

.hi-footer-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.hi-footer-btn-primary {
  background: var(--hi-gold);
  color: var(--hi-green-950);
}

.hi-footer-btn-primary:hover,
.hi-footer-btn-primary:focus {
  background: #d9a94c;
  color: var(--hi-green-950);
}

.hi-footer-btn-ghost {
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
}

.hi-footer-btn-ghost:hover,
.hi-footer-btn-ghost:focus {
  border-color: #fff;
  color: #fff;
}

.hi-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .85fr .85fr;
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(42px, 6vw, 70px) 0;
}

.hi-footer-brand {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 850;
  text-decoration: none;
}

.hi-footer-about p {
  max-width: 390px;
  margin: 1rem 0 1.25rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
}

.hi-footer-whatsapp {
  display: inline-flex;
  padding: .58rem .8rem;
  border: 1px solid rgba(85, 216, 142, .35);
  border-radius: 999px;
  background: rgba(37, 211, 102, .09);
  color: #dfffea;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.hi-footer-grid h3 {
  margin: .25rem 0 1.1rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hi-footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hi-footer-grid li + li {
  margin-top: .65rem;
}

.hi-footer-grid li a {
  color: rgba(255, 255, 255, .69);
  font-size: .91rem;
  text-decoration: none;
}

.hi-footer-grid li a:hover,
.hi-footer-grid li a:focus {
  color: #fff;
}

.hi-footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
}

.hi-footer-bottom > div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.hi-footer-bottom strong {
  color: #fff;
}

.hi-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem 1rem;
}

.hi-footer-bottom a {
  color: rgba(255, 255, 255, .60);
  text-decoration: none;
}

.hi-footer-bottom a:hover,
.hi-footer-bottom a:focus {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .hi-site-header .navbar-collapse {
    margin-top: .8rem;
    padding: 1rem;
    border: 1px solid var(--hi-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--hi-shadow-sm);
  }

  .hi-site-header .navbar-nav {
    align-items: stretch !important;
  }

  .hi-site-header .nav-link {
    padding: .68rem .78rem !important;
  }

  .hi-account-nav {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--hi-border);
  }

  .hi-user-pill {
    width: 100%;
  }

  .hi-hero-grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 30px;
    padding: 54px 42px;
  }

  .hi-hero-visual {
    height: 430px;
    transform: scale(.9);
  }

  .hi-portal-card {
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
  }

  .hi-portal-card > a {
    grid-column: 2;
    white-space: normal;
  }

  .hi-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .hi-steps li:nth-child(2)::after,
  .hi-steps li:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .hi-network-label {
    display: none;
  }

  .hi-network-strip-inner {
    justify-content: center;
  }

  .hi-network-links {
    justify-content: flex-start;
    width: 100%;
  }

  .hi-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hi-hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
    transform: none;
  }

  .hi-campaign,
  .hi-network-layout,
  .hi-points,
  .hi-community {
    grid-template-columns: 1fr;
  }

  .hi-network-hub {
    min-height: 520px;
  }

  .hi-network-portals {
    grid-template-rows: none;
  }

  .hi-portal-card {
    grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr) auto;
  }

  .hi-portal-card > a {
    grid-column: auto;
  }

  .hi-benefit-grid,
  .hi-discover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hi-events-grid {
    grid-template-columns: 1fr;
  }

  .hi-event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .hi-event-network-card {
    grid-column: 1 / -1;
  }

  .hi-footer-network,
  .hi-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hi-footer-network-actions,
  .hi-footer-bottom nav {
    justify-content: flex-start;
  }

  .hi-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .hi-header-shell,
  .hi-home-shell,
  .hi-footer-shell {
    padding-inline: 14px;
  }

  .hi-site-header .navbar {
    min-height: 76px;
  }

  .hi-brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .hi-translate-row {
    justify-content: flex-start;
  }

  .hi-home-shell {
    padding-top: 18px;
  }

  .hi-hero,
  .hi-campaign,
  .hi-how,
  .hi-points,
  .hi-community {
    border-radius: 24px;
  }

  .hi-hero-grid {
    padding: 38px 24px 30px;
  }

  .hi-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.3rem);
  }

  .hi-hero-actions .btn {
    width: 100%;
  }

  .hi-hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hi-hero-proof span {
    justify-content: center;
  }

  .hi-hero-visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 1.2rem;
  }

  .hi-orbit {
    display: none;
  }

  .hi-hub-card,
  .hi-orbit-card {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .hi-hub-card {
    padding: 1.3rem;
  }

  .hi-orbit-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: .8rem;
    padding: .9rem 1rem;
  }

  .hi-orbit-card > span {
    flex: 0 0 36px;
    margin: 0;
  }

  .hi-orbit-card small {
    margin-left: auto;
    text-align: right;
  }

  .hi-campaign {
    padding: 30px 22px;
  }

  .hi-campaign-actions .btn,
  .hi-campaign-code-row > * {
    width: 100%;
  }

  .hi-campaign-code {
    text-align: center;
  }

  .hi-section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hi-network-hub {
    min-height: auto;
    padding: 28px 24px;
  }

  .hi-network-hub ul {
    grid-template-columns: 1fr;
  }

  .hi-portal-card {
    display: block;
    padding: 56px 24px 24px;
  }

  .hi-portal-card .hi-network-status {
    left: 24px;
    right: auto;
  }

  .hi-portal-card > p {
    margin-top: 1rem;
  }

  .hi-portal-card > a {
    display: inline-block;
    margin-top: 1rem;
  }

  .hi-benefit-grid,
  .hi-discover-grid,
  .hi-points-grid,
  .hi-footer-grid {
    grid-template-columns: 1fr;
  }

  .hi-benefit-grid article {
    min-height: auto;
  }

  .hi-how {
    padding: 30px 22px;
  }

  .hi-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hi-steps li {
    padding: .7rem 0;
  }

  .hi-steps li::after {
    display: none;
  }

  .hi-points,
  .hi-community {
    padding: 34px 24px;
  }

  .hi-event-list {
    grid-template-columns: 1fr;
  }

  .hi-event-network-card {
    grid-column: auto;
  }

  .hi-discover-card {
    min-height: auto;
  }

  .hi-footer-network {
    padding: 26px 22px;
  }

  .hi-footer-network-actions,
  .hi-footer-network-actions a {
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .hi-network-links a {
    padding-inline: .55rem;
    font-size: .72rem;
  }

  .hi-brand-logo {
    width: 44px;
    height: 44px;
  }

  .hi-brand {
    gap: .52rem;
    margin-right: .5rem !important;
  }

  .hi-brand-copy strong {
    font-size: .82rem;
  }

  .hi-hero-grid {
    padding-inline: 20px;
  }

  .hi-hero h1 {
    font-size: 2.55rem;
  }

  .hi-orbit-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hi-orbit-card small {
    width: 100%;
    margin-left: 44px;
    text-align: left;
  }

  .hi-event-compact {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .hi-event-compact img {
    width: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* ---------- P02 poster coordination refinements ---------- */
.hi-kicker-green,
.hi-event-date,
.hi-discover-card > div:last-child > span,
.hi-event-compact a,
.hi-discover-card a,
.hi-portal-card > a {
  color: var(--hi-gold-dark);
}

.hi-hero .hi-kicker {
  color: rgba(255, 255, 255, .76);
}

.hi-hero .hi-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  margin-right: .65rem;
  border-radius: 999px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--hi-italy-green) 0 33%, #fff 33% 66%, var(--hi-italy-red) 66% 100%);
}

.hi-hero h1 span,
.hi-hero-proof strong,
.hi-points-grid strong,
.hi-discover-ospitalyty-visual strong {
  color: var(--hi-gold-light);
}

.hi-hub-card {
  border-color: rgba(228, 191, 114, .55);
  background: rgba(255, 250, 243, .95);
}

.hi-orbit-event {
  background: linear-gradient(135deg, rgba(143, 63, 134, .94), rgba(88, 39, 90, .92));
}

.hi-orbit-vetrina {
  background: linear-gradient(135deg, rgba(197, 138, 43, .96), rgba(139, 86, 24, .94));
}

.hi-orbit-ospitalyty {
  background: linear-gradient(135deg, rgba(21, 120, 140, .95), rgba(9, 74, 96, .94));
}

.hi-campaign-code {
  border-color: rgba(3, 26, 50, .36);
  background: rgba(255, 250, 243, .82);
}

.hi-footer-btn-primary {
  background: var(--hi-gold);
  color: var(--hi-navy-950);
}

.hi-footer-btn-primary:hover,
.hi-footer-btn-primary:focus {
  background: var(--hi-gold-light);
  color: var(--hi-navy-950);
}

@media (prefers-reduced-motion: no-preference) {
  .hi-site-header::after {
    background-size: 100% 100%;
  }
}
.hi-native-language{display:flex;justify-content:flex-end;align-items:center;flex-wrap:wrap;gap:.35rem;padding:.35rem 0 .55rem}.hi-native-language a{display:inline-flex;padding:.32rem .58rem;border:1px solid rgba(16,35,63,.16);border-radius:999px;color:#10233f;background:#fff;text-decoration:none;font-size:.76rem;font-weight:700}.hi-native-language a:hover,.hi-native-language a[aria-current="page"]{background:#10233f;color:#fff;border-color:#10233f}@media(max-width:767.98px){.hi-native-language{justify-content:flex-start}.hi-native-language a{font-size:.72rem}}
